# 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
DESTDIR ?= html
all:
$(IKIWIKI) `pwd` $(DESTDIR) -v --wikiname radsecproxy \
--plugin=goodstuff \
--plugin=sidebar \
--exclude=html \
--include=^doc/.*/.*\.html \
--exclude=Makefile \
--exclude=packaging
clean:
rm -rf .ikiwiki $(DESTDIR)