diff options
| -rw-r--r-- | www/devcon/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/devcon/Makefile b/www/devcon/Makefile new file mode 100644 index 0000000..751a62f --- /dev/null +++ b/www/devcon/Makefile @@ -0,0 +1,9 @@ +ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ + +SRC := $(wildcard *.t) +OBJS := $(SRC:%.t=%.html) + +all: $(OBJS) + +%.html : %.t + $(ACTION) $< |