forked from len0rd/rockbox
generates separate 'firmware' and 'apps' targets in the makefile, also
added a clean target git-svn-id: svn://svn.rockbox.org/rockbox/trunk@671 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f8a59f27f8
commit
3c286ec63c
1 changed files with 11 additions and 1 deletions
12
tools/configure
vendored
12
tools/configure
vendored
|
@ -143,10 +143,20 @@ DEBUG=@DEBUG@
|
|||
TARGET=@TARGET@
|
||||
THISDIR="@PWD@"
|
||||
|
||||
all:
|
||||
.PHONE: firmware apps
|
||||
|
||||
all: firmware apps
|
||||
|
||||
firmware:
|
||||
make -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR)
|
||||
|
||||
apps:
|
||||
make -C \$(APPSDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR)
|
||||
|
||||
clean:
|
||||
make -C \$(APPSDIR) clean
|
||||
make -C \$(FIRMDIR) clean
|
||||
|
||||
EOF
|
||||
|
||||
echo "Created Makefile"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue