Skip to content

Instantly share code, notes, and snippets.

@louisswarren
Created November 1, 2018 02:04
Show Gist options
  • Save louisswarren/b7ecfa15e07e3d3fcc9150b3c39db69d to your computer and use it in GitHub Desktop.
Save louisswarren/b7ecfa15e07e3d3fcc9150b3c39db69d to your computer and use it in GitHub Desktop.
Makefile which downloads binary resources
DL=wget -O $@
example.pdf: example.tex bin
pdflatex example.tex
.PHONY: bin
bin: image1.png image2.png
image1.png:
$(DL) https://....png
image2.png:
$(DL) https://....png
.PHONY: clean
clean:
rm *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment