mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
13 lines
237 B
Makefile
13 lines
237 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := main
|
|
|
|
LOCAL_SRC_FILES := YourSourceHere.c
|
|
|
|
LOCAL_STATIC_LIBRARIES := SDL2_static
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
$(call import-module,SDL)LOCAL_PATH := $(call my-dir)
|