diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:17:19 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:39:52 -0500 |
commit | 002c7d224d02d80fe6eeaa706858fc11bcb94ae1 (patch) | |
tree | 2e1934b8f50be1b6797f3850c1ba7c94bbd4f17f /Makefile | |
parent | 83c9b7dbaa3f0b972aa36e9960a9347d082f1e17 (diff) |
Parabola branding
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: |