21 lines
277 B
Makefile
21 lines
277 B
Makefile
# Stuff for make to work make magic.
|
|
.DEFAULT: all
|
|
.SUFFIXES: .part .html
|
|
.PHONY: all
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
PAGES = index.html
|
|
BLOBS = assets/
|
|
|
|
all: $(PAGES)
|
|
|
|
clean:
|
|
rm -rf $(PAGES)
|
|
|
|
deploy: $(PAGES) $(BLOBS)
|
|
./deploy.sh $^
|
|
|
|
index.html: FORCE
|
|
./index.html.sh > $@
|
|
|
|
FORCE:
|