diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-11-21 15:55:34 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-21 15:55:34 +0000 |
| commit | 6f0bc5c17885f4efd88920a7f9c705a9c1534918 (patch) | |
| tree | 8f271bda91c2b47dfd1a30c242eadddc366d592f | |
| parent | caee4b3e3703c78c2bd70b211f06682eb88712d5 (diff) | |
| download | rockbox-6f0bc5c17885f4efd88920a7f9c705a9c1534918.zip rockbox-6f0bc5c17885f4efd88920a7f9c705a9c1534918.tar.gz rockbox-6f0bc5c17885f4efd88920a7f9c705a9c1534918.tar.bz2 rockbox-6f0bc5c17885f4efd88920a7f9c705a9c1534918.tar.xz | |
enables 'make tools' in the build dir
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8024 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index bb6e3e1..9c95182 100755 --- a/tools/configure +++ b/tools/configure @@ -858,6 +858,7 @@ export APPEXTRA=@APPEXTRA@ export ENABLEDPLUGINS=@PLUGINS@ export SOFTWARECODECS=@CODECS@ export EXTRA_DEFINES=@EXTRADEF@ +export HOSTCC=gcc export CC=@CC@ export LD=@LD@ export AR=@AR@ @@ -891,6 +892,9 @@ clean: @\$(MAKE) -C \$(APPSDIR) clean OBJDIR=\$(BUILDDIR)/@APPS@ @rm -rf rockbox.zip TAGS @APPS@ firmware comsim sim lang.h +tools: + \$(MAKE) -C \$(TOOLSDIR) CC=\$(HOSTCC) + tags: @rm -f TAGS \$(MAKE) -C \$(FIRMDIR) tags |