summaryrefslogtreecommitdiff
path: root/www/digest/Makefile
diff options
context:
space:
mode:
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 @@
1ACTION=@echo preprocessing $@; \
2 fcpp -WWW -I.. -Uunix -H -C -V -LL $< $@
3
4SRC := $(wildcard *.t)
5OBJS := $(SRC:%.t=%.html)
6
7all: $(OBJS) digest.rss digest.mail
8
9digest.html: digest.t news.t digesthead.t log.t
10 $(ACTION)
11
12index.html: index.t ../head.t news.t ../foot.t
13
14%.html : %.t news.t digesthead.t log.t
15 $(ACTION)
16
17digest.mail: mail.t log.t mailify.pl
18 @echo mailifying $@;
19 fcpp -WWW -DMAKE_MAIL -Uunix -P -H -C -V -LL $< digest.temp
20 ./mailify.pl < digest.temp > digest.mail
21
22digest.rss: digest.t digesthead.t log.raw
23 @echo rssing $@;
24 @rm -f $@;
25 @fcpp -WWW -DMAKE_RSS -Uunix -P -H -C -V -LL >$@ $<
26
27log.raw: log.t rssify.pl digesthead.t
28 ./rssify.pl < $< >$@
29
30
31