10 lines
172 B
Makefile
10 lines
172 B
Makefile
|
ACTION=@echo preprocessing $@; rm -f $@; fcpp -WWW -I.. -Uunix -H -C -V -LL >$@
|
||
|
|
||
|
SRC := $(wildcard *.t)
|
||
|
OBJS := $(SRC:%.t=%.html)
|
||
|
|
||
|
all: $(OBJS)
|
||
|
|
||
|
%.html : %.t
|
||
|
$(ACTION) $<
|