2021-02-19 09:50:00 +01:00
|
|
|
# Stuff for make to work make magic.
|
2021-02-22 16:59:41 +01:00
|
|
|
.PHONY: all clean deploy
|
2021-02-19 09:50:00 +01:00
|
|
|
|
|
|
|
PAGES = index.html
|
2021-02-19 10:27:35 +01:00
|
|
|
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:
|