blob: a82036abc77af076c8cec628c52af8e15a7a26fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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) $<
index.html: index.t nicks.txt
|