cd0f122071
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@59 a1c6a512-1295-4272-9138-f99709370657
19 lines
337 B
Makefile
19 lines
337 B
Makefile
ACTION=@echo preprocessing $@; rm -f $@; fcpp -WWW -Uunix -H -C -V -LL >$@
|
|
|
|
SRC := $(wildcard *.t)
|
|
OBJS := $(SRC:%.t=%.html)
|
|
|
|
.SUFFIXES: .t .html
|
|
|
|
%.html : %.t
|
|
$(ACTION) $<
|
|
|
|
all: $(OBJS)
|
|
@(cd schematics; $(MAKE))
|
|
@(cd docs; $(MAKE))
|
|
@(cd mods; $(MAKE))
|
|
@(cd internals; $(MAKE))
|
|
@(cd irc; $(MAKE))
|
|
|
|
main.html: main.t activity.html
|
|
|