summaryrefslogtreecommitdiffstats
path: root/www/digest/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2007-01-08 23:52:01 +0000
committerBjörn Stenberg <bjorn@haxx.se>2007-01-08 23:52:01 +0000
commit6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5 (patch)
treed11bbebc69df06d60970d05b4816e13d93602f2d /www/digest/Makefile
parent8cece5a745f30234bfced4becfd9dfe4ca1047d4 (diff)
downloadrockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.tar.gz
rockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.zip
Splitting out www
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11952 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/digest/Makefile')
-rw-r--r--www/digest/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/www/digest/Makefile b/www/digest/Makefile
deleted file mode 100644
index 904815c667..0000000000
--- a/www/digest/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-ACTION=@echo preprocessing $@; \
- 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)
-
-index.html: index.t ../head.t news.t ../foot.t
-
-%.html : %.t news.t digesthead.t log.t
- $(ACTION)
-
-digest.mail: mail.t log.t mailify.pl
- @echo mailifying $@;
- fcpp -WWW -DMAKE_MAIL -Uunix -P -H -C -V -LL $< digest.temp
- ./mailify.pl < digest.temp > digest.mail
-
-digest.rss: digest.t digesthead.t log.raw
- @echo rssing $@;
- @rm -f $@;
- @fcpp -WWW -DMAKE_RSS -Uunix -P -H -C -V -LL >$@ $<
-
-log.raw: log.t rssify.pl digesthead.t
- ./rssify.pl < $< >$@
-
-
-