diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-03-27 11:21:50 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-03-27 11:21:50 +0000 |
| commit | d6023a7adee17628e0ec4bad02e10199c1165bdb (patch) | |
| tree | ff133f4507b5c388094401093c224fff22215395 /www/docs/Makefile | |
| parent | e8c6b2052b11d85b8836a0c07e493b9562dd11eb (diff) | |
| download | rockbox-d6023a7adee17628e0ec4bad02e10199c1165bdb.zip rockbox-d6023a7adee17628e0ec4bad02e10199c1165bdb.tar.gz rockbox-d6023a7adee17628e0ec4bad02e10199c1165bdb.tar.bz2 rockbox-d6023a7adee17628e0ec4bad02e10199c1165bdb.tar.xz | |
Initial version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@34 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/docs/Makefile')
| -rw-r--r-- | www/docs/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/docs/Makefile b/www/docs/Makefile new file mode 100644 index 0000000..5ec9d50 --- /dev/null +++ b/www/docs/Makefile @@ -0,0 +1,9 @@ +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) $< |