summaryrefslogtreecommitdiff
path: root/sitestatic/logos
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 19:43:48 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 19:43:48 -0600
commitbc05a46912d83901c472c720c5112e315127789f (patch)
treed562b98551dfd7f5861b195a73c65b0f7a818706 /sitestatic/logos
parentd10acd3ebf889fc50054b4da9c1962bad79533e1 (diff)
add Makefiles to generate the branding
Diffstat (limited to 'sitestatic/logos')
-rw-r--r--sitestatic/logos/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sitestatic/logos/Makefile b/sitestatic/logos/Makefile
new file mode 100644
index 00000000..1fa00733
--- /dev/null
+++ b/sitestatic/logos/Makefile
@@ -0,0 +1,15 @@
+include ../../common.mk
+
+files = \
+ apple-touch-icon-114x114.png \
+ apple-touch-icon-144x144.png \
+ apple-touch-icon-57x57.png \
+ apple-touch-icon-72x72.png \
+ icon-transparent-64x64.png
+
+all: $(files)
+clean:
+ rm -f -- $(files)
+
+$(files): %: $(branding)/%
+ cp $< $@