tools.e-durable.ch/Makefile
2021-02-22 16:59:41 +01:00

18 lines
240 B
Makefile

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