Skip to content

Commit

Permalink
Working mikmod for Android! Woo! :)
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 14, 2011
1 parent 3611ad7 commit cae7e4f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Android.mk
Expand Up @@ -4,12 +4,16 @@ include $(CLEAR_VARS)

LOCAL_MODULE := SDL_mixer

LOCAL_CFLAGS := -I$(LOCAL_PATH)/.. -I$(LOCAL_PATH)/../SDL/include \
-DWAV_MUSIC -DOGG_MUSIC -DOGG_USE_TREMOR #-DMOD_MUSIC
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/.. \
$(LOCAL_PATH)/../SDL/include \
$(LOCAL_PATH)/../mikmod/include \

LOCAL_CFLAGS := -DWAV_MUSIC -DOGG_MUSIC -DOGG_USE_TREMOR -DMOD_MUSIC

LOCAL_SRC_FILES := $(notdir $(filter-out %/playmus.c %/playwave.c, $(wildcard $(LOCAL_PATH)/*.c)))

LOCAL_SHARED_LIBRARIES := SDL
LOCAL_SHARED_LIBRARIES := SDL mikmod
LOCAL_STATIC_LIBRARIES := tremor

include $(BUILD_SHARED_LIBRARY)

0 comments on commit cae7e4f

Please sign in to comment.