4de8f99cdd
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1043 a1c6a512-1295-4272-9138-f99709370657
27 lines
483 B
Makefile
27 lines
483 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
|
|
|
|
.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))
|
|
|
|
main.html: main.t activity.html
|
|
|
|
daily.shtml: daily.t
|
|
|