diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2005-04-12 12:09:04 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2005-04-12 12:09:04 +0000 |
| commit | 6bb50195b3d2a78413e1c71f245e5e8b3601fe08 (patch) | |
| tree | 9fb0f46aa118fac40a4dd62580ac1f1da3afbfb1 | |
| parent | f2a60ff11da35974dbd62c4e6f456b473e11c324 (diff) | |
| download | rockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.zip rockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.tar.gz rockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.tar.bz2 rockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.tar.xz | |
fix the digest dep build (dast)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6273 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/digest/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/digest/Makefile b/www/digest/Makefile index 4e7b3ea..61b18cd 100644 --- a/www/digest/Makefile +++ b/www/digest/Makefile @@ -1,10 +1,15 @@ -ACTION=@echo preprocessing $@; rm -f $@; fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ +ACTION=@echo preprocessing $@; \ + rm -f $@; \ + fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ SRC := $(wildcard *.t) OBJS := $(SRC:%.t=%.html) all: $(OBJS) digest.rss digest.mail +digest.html: digest.t news.t digesthead.t log.t + $(ACTION) $< + %.html : %.t news.t digesthead.t log.t $(ACTION) $< |