blob: a7dfde7e823431636a3ff3e06e9b4f70842ea616 (
plain)
- # 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 --plugin=goodstuff \
- --no-rcs --exclude=html
- clean:
- rm -rf .ikiwiki html
|