Created
May 9, 2020 18:15
-
-
Save loganlinn/d8ef4df01a1104f75c9ae7106880fe61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include Makefile.venv | |
Makefile.venv: | |
curl \ | |
-o Makefile.fetched \ | |
-L "https://github.com/sio/Makefile.venv/raw/v2020.05.07/Makefile.venv" | |
echo "ab60a72bb9215935db6d3d8cd0f8dfe8cd48e8cca0235227ecc476f1cff46e51 *Makefile.fetched" \ | |
| sha256sum --check - \ | |
&& mv Makefile.fetched Makefile.venv | |
.PHONY: requirements | |
requirements: requirements.txt | |
$(MAKE) | |
requirements.txt: requirements.in | |
$(VENV)/pip-compile $< --output-file $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment