be10f54eec
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9279 a1c6a512-1295-4272-9138-f99709370657
55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V -LL >$@
|
|
|
|
SRC := $(wildcard *.t)
|
|
SOBJS := daily.shtml main.shtml index.shtml status.shtml \
|
|
bugs.shtml requests.shtml patches.shtml cvs.shtml
|
|
|
|
OBJS := $(SRC:%.t=%.html) $(SOBJS)
|
|
|
|
.SUFFIXES: .t .html
|
|
|
|
%.html : %.t
|
|
$(ACTION) $<
|
|
|
|
%.shtml : %.t
|
|
$(ACTION) $<
|
|
|
|
all: $(OBJS) head.tmpl
|
|
@(cd schematics; $(MAKE))
|
|
@(cd docs; $(MAKE))
|
|
@(cd mods; $(MAKE))
|
|
@(cd internals; $(MAKE))
|
|
@(cd irc; $(MAKE))
|
|
@(cd devcon; $(MAKE))
|
|
@(cd sh-win; $(MAKE))
|
|
@(cd download; $(MAKE))
|
|
@(cd manual; $(MAKE))
|
|
@(cd manual-1.2; $(MAKE))
|
|
@(cd fonts; $(MAKE))
|
|
@(cd lang; $(MAKE))
|
|
@(cd tshirt-contest; $(MAKE))
|
|
@(cd screenshots; $(MAKE))
|
|
@(cd digest; $(MAKE))
|
|
@(cd playerhistory; $(MAKE))
|
|
@(cd devcon2006; $(MAKE))
|
|
@(cd doom; $(MAKE))
|
|
|
|
head.tmpl: head.t
|
|
$(ACTION) -DTWIKI $<
|
|
|
|
main.html: main.t activity.html
|
|
|
|
main.shtml: main.t activity.html
|
|
|
|
index.shtml: main.shtml
|
|
ln -s main.shtml index.shtml
|
|
|
|
daily.shtml: daily.t
|
|
|
|
cvs.shtml: daily.t
|
|
|
|
since25.html:
|
|
ln -s /home/dast/daniel_html/rockbox/since25.html since25.html
|
|
|
|
clean:
|
|
find . -name "*html" | xargs rm
|