summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/download/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/www/download/Makefile b/www/download/Makefile
index 751a62f256..77a5daee5e 100644
--- a/www/download/Makefile
+++ b/www/download/Makefile
@@ -1,9 +1,12 @@
1ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ 1ACTION=echo preprocessing $@; rm -f $@; \
2 $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL $< $@
2 3
3SRC := $(wildcard *.t) 4OBJS := index.shtml old.html
4OBJS := $(SRC:%.t=%.html)
5 5
6all: $(OBJS) 6all: $(OBJS)
7 7
8%.html : %.t 8index.shtml: index.t
9 $(ACTION) $< 9 $(ACTION)
10
11old.html: old.t
12 $(ACTION)