diff options
author | Björn Stenberg <bjorn@haxx.se> | 2006-03-17 22:51:17 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2006-03-17 22:51:17 +0000 |
commit | 44769c236dc0cdb365972395ce9fe6c3b8441195 (patch) | |
tree | 576a1bcdc47b7f8fe6c6e6b85d2f268e3bdf6898 /www | |
parent | 9d18b0357b1b6483ff49386b1b491e952ae4a108 (diff) |
Added old.t
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9082 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www')
-rw-r--r-- | www/download/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/www/download/Makefile b/www/download/Makefile index 751a62f256..77a5daee5e 100644 --- a/www/download/Makefile +++ b/www/download/Makefile @@ -1,9 +1,12 @@ -ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ +ACTION=echo preprocessing $@; rm -f $@; \ + $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL $< $@ -SRC := $(wildcard *.t) -OBJS := $(SRC:%.t=%.html) +OBJS := index.shtml old.html all: $(OBJS) -%.html : %.t - $(ACTION) $< +index.shtml: index.t + $(ACTION) + +old.html: old.t + $(ACTION) |