aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c61608e7f3b2f1accbd8bec20b7605043c081c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
DOCBUILD=../doctools/webdocs/docbuild

VERBOSE=--verbose

FETCHTS=.fetch.ts

all: help

help: 
	@echo "Usage:"
	@echo "- make clean: clean all generated files"
	@echo "- make fetch: fetch the site if necessary"
	@echo "- make build: build the site"
	@echo "- make push: push the built site"
	@echo "- make serve: serve the site"

.PHONY: clean
clean:
	$(DOCBUILD) $(VERBOSE) --clean
	rm -f $(FETCHTS)

$(FETCHTS): $(wildcard site/_tocs/*/fetched_files.yml)
	$(DOCBUILD) $(VERBOSE) --fetch --force
	touch $@

.PHONY: fetch
fetch: $(FETCHTS)
	@echo "Fetched files up to date."

.PHONY: build
build: $(FETCHTS)
	$(DOCBUILD) $(VERBOSE) --build

.PHONY: push
push: $(FETCHTS)
	$(DOCBUILD) $(VERBOSE) --build --push

.PHONY: serve
serve: $(FETCHTS)
	$(DOCBUILD) $(VERBOSE) --build --serve