diff --git a/www/devcon/Makefile b/www/devcon/Makefile new file mode 100644 index 0000000000..751a62f256 --- /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) $<