aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9d2b8e036c8fa64cfe7c182f7351590ca7f891bb (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
DOCBUILD=../doctools/webdocs/docbuild

VERBOSE=--verbose

all: help

help: 
	@echo "Usage:"
	@echo "- make clean: clean all generated files"
	@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


.PHONY: build
build:
	$(DOCBUILD) $(VERBOSE) --fetch --force --build

.PHONY: push
push:
	$(DOCBUILD) $(VERBOSE) --fetch --force --build --push

.PHONY: serve
serve: 
	$(DOCBUILD) $(VERBOSE) ---fetch --force --build --serve