7 lines
157 B
Makefile
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
|