1880165e2e
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1778 a1c6a512-1295-4272-9138-f99709370657
17 lines
319 B
Makefile
17 lines
319 B
Makefile
ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -P -LL >$@
|
|
|
|
SRC := $(wildcard *.t)
|
|
OBJS := $(SRC:%.t=%.html)
|
|
TXT2PLAIN = ../txt2plain.pl
|
|
|
|
all: $(OBJS)
|
|
|
|
faq.html: faq.t faq.raw $(TXT2PLAIN)
|
|
$(ACTION) $<
|
|
|
|
faq.raw: FAQ $(TXT2PLAIN)
|
|
$(TXT2PLAIN) < $< > $@
|
|
|
|
|
|
%.html : %.t
|
|
$(ACTION) $<
|