12 lines
237 B
Makefile
Executable file
12 lines
237 B
Makefile
Executable file
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)
|