summaryrefslogtreecommitdiff
path: root/doc/examples/softwaresite/Makefile
blob: f2c4d8e54df05b01ce349f27c2e66fa7df784769 (plain)
  1. # Build static html docs suitable for being shipped in the software
  2. # package. This depends on ikiwiki being installed to build the docs.
  3. ifeq ($(shell which ikiwiki),)
  4. IKIWIKI=echo "** ikiwiki not found" >&2 ; echo ikiwiki
  5. else
  6. IKIWIKI=ikiwiki
  7. endif
  8. all:
  9. $(IKIWIKI) `pwd` html -v --wikiname FooBar --plugin=goodstuff \
  10. --exclude=html --exclude=Makefile
  11. clean:
  12. rm -rf .ikiwiki html