tools.e-durable.ch/Makefile

19 lines
240 B
Makefile
Raw Normal View History

2021-02-19 09:50:00 +01:00
# Stuff for make to work make magic.
.PHONY: all clean deploy
2021-02-19 09:50:00 +01:00
PAGES = index.html
BLOBS = assets/ services/
2021-02-19 09:50:00 +01:00
all: $(PAGES)
clean:
rm -rf $(PAGES)
deploy: $(PAGES) $(BLOBS)
./deploy.sh $^
index.html: FORCE
./index.html.sh > $@
FORCE: