From c26d92dd18c597c4cd7ea5ca3e9888b484b1d7ee Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 23 Nov 2016 00:17:19 -0500 Subject: Parabola branding --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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: -- cgit v1.2.3-54-g00ecf