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:
parent
40a72c7bac
commit
1c95764c54
1 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
CC=gcc
|
CC=gcc
|
||||||
WINDRES=windres
|
WINDRES=windres
|
||||||
STRIP=strip
|
STRIP?=echo strip
|
||||||
|
|
||||||
STRIPFLAGS=--strip-unneeded --remove-section=.comment
|
STRIPFLAGS=--strip-unneeded --remove-section=.comment
|
||||||
|
|
||||||
|
@ -9,6 +9,8 @@ CPUOPTIMIZATIONS=
|
||||||
#canonicalize the source path. except emscripten warns about that like crazy. *sigh*
|
#canonicalize the source path. except emscripten warns about that like crazy. *sigh*
|
||||||
ifeq ($(FTE_TARGET),web)
|
ifeq ($(FTE_TARGET),web)
|
||||||
BASE_DIR:=.
|
BASE_DIR:=.
|
||||||
|
else ifeq ($(FTE_TARGET),droid)
|
||||||
|
BASE_DIR:=.
|
||||||
else
|
else
|
||||||
BASE_DIR:=$(realpath .)
|
BASE_DIR:=$(realpath .)
|
||||||
endif
|
endif
|
||||||
|
@ -86,9 +88,9 @@ ifeq ($(FTE_TARGET),droid)
|
||||||
else
|
else
|
||||||
#we're running upon windows
|
#we're running upon windows
|
||||||
ifeq ($(DROID_ARCH),x86)
|
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
|
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
|
endif
|
||||||
ANDROID_SCRIPT=android.bat
|
ANDROID_SCRIPT=android.bat
|
||||||
#make can't cope with absolute win32 paths in dependancy files
|
#make can't cope with absolute win32 paths in dependancy files
|
||||||
|
|
Loading…
Reference in a new issue