rockbox/www/Makefile
Björn Stenberg b42ac1dc4d Added manual-1.2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1740 a1c6a512-1295-4272-9138-f99709370657
2002-08-14 17:46:56 +00:00

40 lines
780 B
Makefile

ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V -LL >$@
SRC := $(wildcard *.t)
OBJS := $(SRC:%.t=%.html) daily.shtml main.shtml index.shtml bugs.html status.shtml
.SUFFIXES: .t .html
%.html : %.t
$(ACTION) $<
%.shtml : %.t
$(ACTION) $<
all: $(OBJS)
@(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 tshirt-contest; $(MAKE))
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
bugs.html:
perl getbugs.pl > bugs.html
clean:
find . -name "*html" | xargs rm