7b9b36bd2e
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
26 lines
480 B
Makefile
26 lines
480 B
Makefile
#
|
|
# There's not a lot to "make", but this simplifies the usual
|
|
# 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.
|
|
|
|
# just run the server from the command line
|
|
run:
|
|
perl SIPServer.pm SIPconfig.xml
|
|
|
|
test:
|
|
cd t; $(MAKE) test
|
|
|
|
tags:
|
|
find . -name '*.pm' -print | etags -
|
|
|
|
html: ILS.html ILS/Item.html ILS/Patron.html
|