summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-16 08:33:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-16 08:33:17 +0000
commit0dfb0bb1c04523a42a9ce3e6da054ba951caa17b (patch)
tree038649ef06555b4b21e89f3519adcc3c4c24668d /www
parentbd7fc37984f9a142f1ffcaad3480938582d166b2 (diff)
downloadrockbox-0dfb0bb1c04523a42a9ce3e6da054ba951caa17b.tar.gz
rockbox-0dfb0bb1c04523a42a9ce3e6da054ba951caa17b.zip
generate a more HTMLish faq page
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1775 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www')
-rw-r--r--www/docs/Makefile8
-rw-r--r--www/docs/faq.t8
2 files changed, 16 insertions, 0 deletions
diff --git a/www/docs/Makefile b/www/docs/Makefile
index 751a62f256..78f34a6f6d 100644
--- a/www/docs/Makefile
+++ b/www/docs/Makefile
@@ -2,8 +2,16 @@ ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C
2 2
3SRC := $(wildcard *.t) 3SRC := $(wildcard *.t)
4OBJS := $(SRC:%.t=%.html) 4OBJS := $(SRC:%.t=%.html)
5TXT2PLAIN = ../txt2plain.pl
5 6
6all: $(OBJS) 7all: $(OBJS)
7 8
9faq.html: faq.t $(MAINPARTS) faq.raw
10 $(ACTION) $<
11
12faq.raw: FAQ
13 $(TXT2PLAIN) < $< > $@
14
15
8%.html : %.t 16%.html : %.t
9 $(ACTION) $< 17 $(ACTION) $<
diff --git a/www/docs/faq.t b/www/docs/faq.t
new file mode 100644
index 0000000000..87c81860a6
--- /dev/null
+++ b/www/docs/faq.t
@@ -0,0 +1,8 @@
1#define _PAGE_ FAQ - Frequently Asked Questions
2#include "head.t"
3
4<pre>
5#include "faq.raw"
6</pre>
7
8#include "foot.t"