project_files/Android-build/SDL-android-project/jni/SDL_ttf/Android.mk
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 17:39:04 +0200
changeset 12653 1215fd246e08
parent 9372 915436ff64ab
permissions -rw-r--r--
Climb Home: Fix game getting stuck when player reaches home What now happens if a player reaches home: - sndWinning - Show caption with finishing time - Winning hog is teleported to roof and can be seen by everyone - 4 second delay - If there are still hogs left, the game continues normally - Each victory is mentioned in stats screen at the end

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := SDL_ttf

LOCAL_CFLAGS := -I$(LOCAL_PATH)/../SDL/include

LOCAL_SRC_FILES := SDL_ttf.c

LOCAL_SHARED_LIBRARIES := SDL

LOCAL_LDLIBS := -lz

include $(BUILD_SHARED_LIBRARY)