From: djfiander Date: Mon, 15 May 2006 00:15:11 +0000 (+0000) Subject: Add code to build HTML documentation from the podfiles. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3c064ced2e5111e31c40ec652ef2f637fe176858;p=working%2FSIPServer.git Add code to build HTML documentation from the podfiles. --- diff --git a/Makefile b/Makefile index c1c2b3d..2f670bb 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,13 @@ # sorts of tasks # +PODFLAGS = --htmlroot=. --podroot=. + +.SUFFIXES: .pod .html + +.pod.html: + pod2html $(PODFLAGS) --outfile=$@ --infile=$< + all: @echo Nothing to make. The command '"make run"' will run the server. @@ -10,8 +17,10 @@ all: run: perl SIPServer.pm SIPconfig.xml +test: + cd t; $(MAKE) test + tags: find . -name '*.pm' -print | etags - -test: - cd t; $(MAKE) test +html: ILS.html ILS/Item.html ILS/Patron.html