changed strip flags to not strip by default. cos that's kinda pointless tbh.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4387 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2013-06-04 16:08:00 +00:00
parent 40a72c7bac
commit 1c95764c54
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
CC=gcc
WINDRES=windres
STRIP=strip
STRIP?=echo strip
STRIPFLAGS=--strip-unneeded --remove-section=.comment
@ -9,6 +9,8 @@ CPUOPTIMIZATIONS=
#canonicalize the source path. except emscripten warns about that like crazy. *sigh*
ifeq ($(FTE_TARGET),web)
BASE_DIR:=.
else ifeq ($(FTE_TARGET),droid)
BASE_DIR:=.
else
BASE_DIR:=$(realpath .)
endif
@ -86,9 +88,9 @@ ifeq ($(FTE_TARGET),droid)
else
#we're running upon windows
ifeq ($(DROID_ARCH),x86)
TOOLCHAIN:=$(ANDROID_NDK_ROOT)/toolchains/x86-4.7/prebuilt/windows/bin/i686-android-linux-
TOOLCHAIN:=$(ANDROID_NDK_ROOT)/toolchains/x86-4.7/prebuilt/windows-x86_64/bin/i686-linux-android-
else
TOOLCHAIN:=$(ANDROID_NDK_ROOT)/toolchains/arm-linux-androideabi-4.7/prebuilt/windows/bin/arm-linux-androideabi-
TOOLCHAIN:=$(ANDROID_NDK_ROOT)/toolchains/arm-linux-androideabi-4.7/prebuilt/windows-x86_64/bin/arm-linux-androideabi-
endif
ANDROID_SCRIPT=android.bat
#make can't cope with absolute win32 paths in dependancy files