2007-03-22 00:23:21 +01:00
|
|
|
# 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:
|
2007-03-30 00:36:18 +02:00
|
|
|
$(IKIWIKI) `pwd` html -v --wikiname FooBar --plugin=goodstuff \
|
|
|
|
--exclude=html --exclude=Makefile
|
2007-03-22 00:23:21 +01:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf .ikiwiki html
|