summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2005-04-12 12:09:04 +0000
committerBjörn Stenberg <bjorn@haxx.se>2005-04-12 12:09:04 +0000
commit6bb50195b3d2a78413e1c71f245e5e8b3601fe08 (patch)
tree9fb0f46aa118fac40a4dd62580ac1f1da3afbfb1
parentf2a60ff11da35974dbd62c4e6f456b473e11c324 (diff)
downloadrockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.tar.gz
rockbox-6bb50195b3d2a78413e1c71f245e5e8b3601fe08.zip
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/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/www/digest/Makefile b/www/digest/Makefile
index 4e7b3ea696..61b18cd3c4 100644
--- a/www/digest/Makefile
+++ b/www/digest/Makefile
@@ -1,10 +1,15 @@
1ACTION=@echo preprocessing $@; rm -f $@; fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ 1ACTION=@echo preprocessing $@; \
2 rm -f $@; \
3 fcpp -WWW -I.. -Uunix -H -C -V -LL >$@
2 4
3SRC := $(wildcard *.t) 5SRC := $(wildcard *.t)
4OBJS := $(SRC:%.t=%.html) 6OBJS := $(SRC:%.t=%.html)
5 7
6all: $(OBJS) digest.rss digest.mail 8all: $(OBJS) digest.rss digest.mail
7 9
10digest.html: digest.t news.t digesthead.t log.t
11 $(ACTION) $<
12
8%.html : %.t news.t digesthead.t log.t 13%.html : %.t news.t digesthead.t log.t
9 $(ACTION) $< 14 $(ACTION) $<
10 15