summaryrefslogtreecommitdiffstats
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 61b18cd3c4..0000000000
--- a/www/digest/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-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) $<
-
-digest.mail: mail.t log.t mailify.pl
- echo mailifying $@;
- rm -f $@;
- 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 < $< >$@
-
-
-