summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0821f8565fd365f7317ba0079edf5426f7df7fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Build static html docs suitable for being shipped in the software
# package. This depends on ikiwiki being installed to build the docs.

ifeq ($(shell which ikiwiki),)
IKIWIKI=echo "** ikiwiki not found" >&2 ; echo ikiwiki
else
IKIWIKI=ikiwiki
endif

all:
	$(IKIWIKI) `pwd` html -v --wikiname radsecproxy \
		--plugin=goodstuff \
		--plugin=sidebar \
		--exclude=html \
		--include=^doc/.*/.*\.html \
		--exclude=Makefile \
		--exclude=packaging

clean:
	rm -rf .ikiwiki html