Blame view
tools/sctk-2.4.10/doc/makefile
542 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# Makefile for SCTK # Creation Date: May 18th, 2007 MAKE=make POD2MAN = pod2man POD2HTML = pod2html PODS = align2html \ asclite \ ctmValidator \ mergectm2rttm all: for p in $(PODS); do \ $(POD2MAN) $$p.pod -o $$p.1; \ $(POD2HTML) $$p.pod > $$p.html; \ done 2> /dev/null man: for p in $(PODS); do \ $(POD2MAN) $$p.pod -o $$p.1; \ done 2> /dev/null html: for p in $(PODS); do \ $(POD2HTML) $$p.pod > $$p.html; \ done 2> /dev/null clean: for p in $(PODS); do \ rm -f $$p.1 $$p.html pod2htm?.tmp; \ done 2> /dev/null |