typo fixed
[metatemplate.git] / makefile
1 OBJ=ffilter.o
2 MAN=metatemplate.1.gz
3 EXE=metatemplate 
4
5 ALL: $(EXE) $(MAN)
6
7 metatemplate: metatemplate.c ffilter.o
8         cc -Wall metatemplate.c ffilter.o  -o metatemplate
9
10 ffilter.o: ffilter.c ffilter.h
11         cc -c -Wall ffilter.c 
12
13 metatemplate.1.gz: metatemplate.1
14         gzip -c metatemplate.1 > metatemplate.1.gz
15
16 install: $(EXE) $(MAN)
17         cp $(EXE) /usr/local/bin
18         test -d /usr/local/man/man1 || mkdir -p /usr/local/man/man1
19         cp $(MAN) /usr/local/man/man1
20
21 test:
22         ( cd examples ; \
23         ../metatemplate gruppi.html > Info/gruppi.html ; \
24         ../metatemplate gruppi2.html > Info/gruppi2.html ; \
25         ../metatemplate gruppi3.html > Info/gruppi3.html ; \
26         ../metatemplate subelem.html > Info/subelem.html \
27         )
28
29 clean:
30         rm -f *~ $(OBJ) $(EXE) $(MAN) examples/Obj/* examples/Pho/* examples/Template/* examples/Preview/*