summaryrefslogtreecommitdiff
path: root/www/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'www/Makefile')
-rw-r--r--www/Makefile31
1 files changed, 3 insertions, 28 deletions
diff --git a/www/Makefile b/www/Makefile
index 9a2e76e095..ba02760576 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -8,37 +8,12 @@ OBJS := $(SRC:%.t=%.html)
8%.html : %.t 8%.html : %.t
9 $(ACTION) $< 9 $(ACTION) $<
10 10
11all: $(OBJS) descramble descramble.static.bz2 sh2d sh2d.static.bz2 \ 11all: $(OBJS)
12 scramble scramble.static.bz2
13 @(cd schematics; $(MAKE)) 12 @(cd schematics; $(MAKE))
14 @(cd docs; $(MAKE)) 13 @(cd docs; $(MAKE))
15 @(cd mods; $(MAKE)) 14 @(cd mods; $(MAKE))
15 @(cd internals; $(MAKE))
16 @(cd irc; $(MAKE))
16 17
17main.html: main.t activity.html 18main.html: main.t activity.html
18 19
19descramble: descramble.c
20 cc -Wall -ansi -O2 -s -o $@ $<
21 chmod a+r descramble
22
23descramble.static.bz2: descramble.c
24 cc -static -O2 -s -o descramble.static $<
25 bzip2 -f descramble.static
26 chmod a+r descramble.static.bz2
27
28scramble: scramble.c
29 cc -Wall -ansi -O2 -s -o $@ $<
30 chmod a+r scramble
31
32scramble.static.bz2: scramble.c
33 cc -static -O2 -s -o scramble.static $<
34 bzip2 -f scramble.static
35 chmod a+r scramble.static.bz2
36
37sh2d: sh2d.c
38 cc -O2 -s -o $@ $<
39 chmod a+r sh2d
40
41sh2d.static.bz2: sh2d.c
42 cc -static -O2 -s -o sh2d.static $<
43 bzip2 -f sh2d.static
44 chmod a+r sh2d.static.bz2