diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-10 22:02:53 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-10 22:02:53 +0000 |
commit | 5b4a339486077fbce9928cc9e4d27f0add698f1e (patch) | |
tree | 5901e281c91a36eeac3839fd6527bd5597dda3aa /tools | |
parent | a9eda6060a2a204d279f547854c2c4be1bbf90d8 (diff) |
Build rockboxui.exe when cross-compiling a win32 sim, set MAKEFLAGS to
hush up make more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6185 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index ebcd6f5e16..8b078a9e69 100755 --- a/tools/configure +++ b/tools/configure @@ -41,6 +41,8 @@ crosswincc () { LDOPTS="-lgdi32 -luser32 -mwindows" # add cross-compiler option(s) GCCOPTS="$GCCOPTS -mno-cygwin" + + output="rockboxui.exe" # use this as output binary name } simcc () { @@ -615,6 +617,9 @@ export GCCVER=@GCCVER@ export GCCNUM=@GCCNUM@ export UNAME=@UNAME@ +# Do not print "Entering directory ..." +MAKEFLAGS += --no-print-directory + .PHONY: all clean tags zip all: |