themblem/examples/Makefile
2024-09-01 21:51:50 +01:00

7 lines
157 B
Makefile

.PHONY: FORCE
blue.zip green.zip: FORCE
for c in blue green; do \
cp template/$$c.html template/index.html; \
(cd template && zip -r ../$$c *); \
done