rockbox/www/docs/Makefile
Robert Hak a27f5d7bd1 faqs and plain txt are now handled differently
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1912 a1c6a512-1295-4272-9138-f99709370657
2002-08-22 03:36:49 +00:00

41 lines
963 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)
FAQ2HTML = ../faq2html.pl
TXT2HTML = ../txt2html.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.raw: $(DOCS)/FAQ $(FAQ2HTML)
$(FAQ2HTML) < $< > $@
faq.html: faq.t faq.raw $(FAQ2HTML)
$(ACTION) $<
battery-faq.raw: $(DOCS)/BATTERY-FAQ $(FAQ2HTML)
$(FAQ2HTML) < $< > $@
battery-faq.html: battery-faq.t battery-faq.raw $(FAQ2HTML)
$(ACTION) $<
contributing.raw: $(DOCS)/CONTRIBUTING $(TXT2HTML)
$(TXT2HTML) < $< > $@
contributing.html: contributing.t contributing.raw $(TXT2HTML)
$(ACTION) $<
custom_wps_format.raw: $(DOCS)/CUSTOM_WPS_FORMAT $(TXT2HTML)
$(TXT2HTML) < $< > $@
custom_wps_format.html: custom_wps_format.t custom_wps_format.raw $(TXT2HTML)
$(ACTION) $<
%.html : %.t
$(ACTION) $<