Put the ipod into standby mode on shutdown. This is untested on the 5g, but should...
[Rockbox.git] / www / Makefile
blob8c0521fcc1589f9afb202ca0069324610c73eef2
1 ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V -LL >$@
3 SRC := $(wildcard *.t)
4 SOBJS := daily.shtml main.shtml index.shtml status.shtml \
5 bugs.shtml requests.shtml patches.shtml
6 OBJS := $(SRC:%.t=%.html) $(SOBJS)
8 .SUFFIXES: .t .html
10 %.html : %.t
11 $(ACTION) $<
13 %.shtml : %.t
14 $(ACTION) $<
16 all: $(OBJS) head.tmpl
17 @(cd schematics; $(MAKE))
18 @(cd docs; $(MAKE))
19 @(cd mods; $(MAKE))
20 @(cd internals; $(MAKE))
21 @(cd irc; $(MAKE))
22 @(cd devcon; $(MAKE))
23 @(cd sh-win; $(MAKE))
24 @(cd download; $(MAKE))
25 @(cd manual; $(MAKE))
26 @(cd manual-1.2; $(MAKE))
27 @(cd fonts; $(MAKE))
28 @(cd lang; $(MAKE))
29 @(cd tshirt-contest; $(MAKE))
30 @(cd screenshots; $(MAKE))
31 @(cd digest; $(MAKE))
32 @(cd playerhistory; $(MAKE))
34 head.tmpl: head.t
35 $(ACTION) -DTWIKI $<
37 main.html: main.t activity.html
39 main.shtml: main.t activity.html
41 index.shtml: main.shtml
42 ln -s main.shtml index.shtml
44 daily.shtml: daily.t
46 clean:
47 find . -name "*html" | xargs rm