diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-03-28 14:49:12 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-03-28 14:49:12 +0000 |
| commit | cd0f122071947ea08edea827efe176413de07151 (patch) | |
| tree | 8559dab51104bcaa400414a179cb51a564672ac8 | |
| parent | ac7d866df360da8c77122eefab59812f65412d49 (diff) | |
| download | rockbox-cd0f122071947ea08edea827efe176413de07151.zip rockbox-cd0f122071947ea08edea827efe176413de07151.tar.gz rockbox-cd0f122071947ea08edea827efe176413de07151.tar.bz2 rockbox-cd0f122071947ea08edea827efe176413de07151.tar.xz | |
Removed tool targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@59 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/Makefile | 31 |
1 files changed, 3 insertions, 28 deletions
diff --git a/www/Makefile b/www/Makefile index 9a2e76e..ba02760 100644 --- a/www/Makefile +++ b/www/Makefile @@ -8,37 +8,12 @@ OBJS := $(SRC:%.t=%.html) %.html : %.t $(ACTION) $< -all: $(OBJS) descramble descramble.static.bz2 sh2d sh2d.static.bz2 \ - scramble scramble.static.bz2 +all: $(OBJS) @(cd schematics; $(MAKE)) @(cd docs; $(MAKE)) @(cd mods; $(MAKE)) + @(cd internals; $(MAKE)) + @(cd irc; $(MAKE)) main.html: main.t activity.html -descramble: descramble.c - cc -Wall -ansi -O2 -s -o $@ $< - chmod a+r descramble - -descramble.static.bz2: descramble.c - cc -static -O2 -s -o descramble.static $< - bzip2 -f descramble.static - chmod a+r descramble.static.bz2 - -scramble: scramble.c - cc -Wall -ansi -O2 -s -o $@ $< - chmod a+r scramble - -scramble.static.bz2: scramble.c - cc -static -O2 -s -o scramble.static $< - bzip2 -f scramble.static - chmod a+r scramble.static.bz2 - -sh2d: sh2d.c - cc -O2 -s -o $@ $< - chmod a+r sh2d - -sh2d.static.bz2: sh2d.c - cc -static -O2 -s -o sh2d.static $< - bzip2 -f sh2d.static - chmod a+r sh2d.static.bz2 |