Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Change from jlunder:
Browse files Browse the repository at this point in the history
Minor configuration changes to smooth the build process, make it work on mac.
  • Loading branch information
slouken committed Jan 4, 2011
1 parent 371af0f commit 35ad676
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile.android
@@ -1,8 +1,8 @@
# Makefile to build the SDL library

include ./android/config.cfg #get ANDROID_NDK
include ./android/config.cfg #get ANDROID_NDK, ANDROID_NDK_HOST

TOOLS_PATH=$(ANDROID_NDK)/toolchains/arm-eabi-4.4.0/prebuilt/darwin-x86/bin
TOOLS_PATH=$(ANDROID_NDK)/toolchains/arm-eabi-4.4.0/prebuilt/$(ANDROID_NDK_HOST)/bin
ANDROID_INCLUDES = -I$(ANDROID_NDK)/platforms/android-4/arch-arm/usr/include
INCLUDE = -I./include
CFLAGS = -g -O2 -fno-short-enums $(INCLUDE) $(ANDROID_INCLUDES) -DANDROID -DANDROID_NDK -static
Expand Down
1 change: 0 additions & 1 deletion android/config.cfg

This file was deleted.

4 changes: 4 additions & 0 deletions android/config.cfg.example
@@ -0,0 +1,4 @@
# This file sets up paths needed to find the NDK build tools.
# Edit it appropriately for your configuration and save it as "config.cfg".
ANDROID_NDK := </absolute/path/to/android/ndk>
ANDROID_NDK_HOST := <host-os> # "linux-x86" for linux, "darwin-x86" for mac

0 comments on commit 35ad676

Please sign in to comment.