diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-12-24 23:23:39 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-12-24 23:27:04 +0100 |
commit | e277e897190aa49bd2a62692eb59f3aa034b00d7 (patch) | |
tree | b2303b1bbf37f6ac0de36d1374d76831a7f17692 /ansible/Makefile | |
parent | 4a705a1a029a66b422ed21d004de609e24e4fb95 (diff) | |
download | infra-e277e897190aa49bd2a62692eb59f3aa034b00d7.tar.gz infra-e277e897190aa49bd2a62692eb59f3aa034b00d7.tar.bz2 infra-e277e897190aa49bd2a62692eb59f3aa034b00d7.tar.xz infra-e277e897190aa49bd2a62692eb59f3aa034b00d7.zip |
o Adding Mitogen.
Diffstat (limited to 'ansible/Makefile')
-rw-r--r-- | ansible/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ansible/Makefile b/ansible/Makefile new file mode 100644 index 0000000..99574dc --- /dev/null +++ b/ansible/Makefile @@ -0,0 +1,9 @@ +all: pip-install + +env: + virtualenv -p python3 env + +pip-install: env/.pip-install.cookie +env/.pip-install.cookie: requirements.txt | env + env/bin/pip install -r $< + @touch "$@" |