summaryrefslogtreecommitdiff
path: root/www/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'www/Makefile')
-rw-r--r--www/Makefile55
1 files changed, 0 insertions, 55 deletions
diff --git a/www/Makefile b/www/Makefile
deleted file mode 100644
index 6bda6917ee..0000000000
--- a/www/Makefile
+++ /dev/null
@@ -1,55 +0,0 @@
1ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V -LL >$@
2
3SRC := $(wildcard *.t)
4SOBJS := daily.shtml main.shtml index.shtml status.shtml \
5 bugs.shtml requests.shtml patches.shtml cvs.shtml
6
7OBJS := $(SRC:%.t=%.html) $(SOBJS)
8
9.SUFFIXES: .t .html
10
11%.html : %.t
12 $(ACTION) $<
13
14%.shtml : %.t
15 $(ACTION) $<
16
17all: $(OBJS) head.tmpl
18 @(cd schematics; $(MAKE))
19 @(cd docs; $(MAKE))
20 @(cd mods; $(MAKE))
21 @(cd internals; $(MAKE))
22 @(cd irc; $(MAKE))
23 @(cd devcon; $(MAKE))
24 @(cd sh-win; $(MAKE))
25 @(cd download; $(MAKE))
26 @(cd manual; $(MAKE))
27 @(cd manual-1.2; $(MAKE))
28 @(cd fonts; $(MAKE))
29 @(cd lang; $(MAKE))
30 @(cd tshirt-contest; $(MAKE))
31 @(cd screenshots; $(MAKE))
32 @(cd digest; $(MAKE))
33 @(cd playerhistory; $(MAKE))
34 @(cd devcon2006; $(MAKE))
35 @(cd doom; $(MAKE))
36
37head.tmpl: head.t
38 $(ACTION) -DTWIKI $<
39
40main.html: main.t activity.html
41
42main.shtml: main.t activity.html
43
44index.shtml: main.shtml
45 ln -s main.shtml index.shtml
46
47daily.shtml: daily.t
48
49cvs.shtml: daily.t
50
51since25.html:
52 ln -s /home/dast/daniel_html/rockbox/since25.html since25.html
53
54clean:
55 find . -name "*html" | xargs rm