RT notifier: parse templates without header correctly
[openxpki.git] / www.openxpki.org / trunk / src / Makefile
blobbf3e8d74c1c61de4af51a1b4994541d0e877758e
1 #
2 # Process Mason templates and populate directory $DSTDIR with the
3 # generated files.
6 SRCDIR=htdocs
7 DSTDIR=../htdocs
9 all: process
11 process:
12 @if [ ! -d $(DSTDIR) ] ; then mkdir $(DSTDIR) ; fi
13 perl generate_html.pl $(SRCDIR) $(DSTDIR)
15 processall:
16 @if [ ! -d $(DSTDIR) ] ; then mkdir $(DSTDIR) ; fi
17 perl generate_html.pl --force $(SRCDIR) $(DSTDIR)
19 clean:
20 rm -rf $(DSTDIR)