rockbox/www/docs/Makefile
Robert Hak edc4852b25 renamed battery.t to battery-faq.t
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1864 a1c6a512-1295-4272-9138-f99709370657
2002-08-21 10:57:25 +00:00

27 lines
613 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
# This is correct. It does point to ../../docs but we need a different
# name so that the directories don't collide.
DOCS = ../docs_
all: $(OBJS)
faq.html: faq.t faq.raw $(TXT2PLAIN)
$(ACTION) $<
faq.raw: $(DOCS)/FAQ $(TXT2PLAIN)
$(TXT2PLAIN) < $< > $@
battery-faq.raw: $(DOCS)/BATTERY-FAQ $(TXT2PLAIN)
$(TXT2PLAIN) < $< > $@
battery-faq.html: battery-faq.t battery-faq.raw $(TXT2PLAIN)
$(ACTION) $<
%.html : %.t
$(ACTION) $<