summaryrefslogtreecommitdiff
path: root/www/docs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'www/docs/Makefile')
-rw-r--r--www/docs/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/www/docs/Makefile b/www/docs/Makefile
index 751a62f256..78f34a6f6d 100644
--- a/www/docs/Makefile
+++ b/www/docs/Makefile
@@ -2,8 +2,16 @@ ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C
2 2
3SRC := $(wildcard *.t) 3SRC := $(wildcard *.t)
4OBJS := $(SRC:%.t=%.html) 4OBJS := $(SRC:%.t=%.html)
5TXT2PLAIN = ../txt2plain.pl
5 6
6all: $(OBJS) 7all: $(OBJS)
7 8
9faq.html: faq.t $(MAINPARTS) faq.raw
10 $(ACTION) $<
11
12faq.raw: FAQ
13 $(TXT2PLAIN) < $< > $@
14
15
8%.html : %.t 16%.html : %.t
9 $(ACTION) $< 17 $(ACTION) $<