From 3c064ced2e5111e31c40ec652ef2f637fe176858 Mon Sep 17 00:00:00 2001 From: djfiander Date: Mon, 15 May 2006 00:15:11 +0000 Subject: [PATCH] Add code to build HTML documentation from the podfiles. --- Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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 -- 2.11.0