diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:17:19 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 01:06:15 -0500 |
commit | 5a19298c0af1e19fd867297425267effa274f34c (patch) | |
tree | 66524e9e5b39614368a7945cd8f49b38ebc490d1 /Makefile | |
parent | b4a2f12ecf090d07bae8db0a79d2011dd5442be6 (diff) |
Parabola brandingpurweb/master3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..004ebc5 --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +# Where are we? +topdir := $(dir $(lastword $(MAKEFILE_LIST))) +web-cache = $(topdir)/web-cache +www = $(web-cache)/www +artwork = $(web-cache)/artwork +branding = $(artwork)/official-2013/optimized-text + +targets = web/html/images/feed-icon-14x14.png + +all: $(targets) +clean: + rm -f -- $(targets) +.PHONY: all clean + +$(www)/http/%: + mkdir -p '$(@D)' + wget 'http://$*' -O '$@' + touch '$@' + +$(www)/https/%: + mkdir -p '$(@D)' + wget 'https://$*' -O '$@' + touch '$@' + +web/html/images/feed-icon-14x14.png: $(www)/http/www.feedicons.com/images/feed-icon-14x14.png + ln -srf $< $@ + +.DELETE_ON_ERROR: +.SECONDARY: |