10 lines
202 B
Makefile
10 lines
202 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# load the common sources file of the platform
|
|
include $(LOCAL_PATH)/Generic.mk
|
|
|
|
LOCAL_CFLAGS += -D__PLATFORM__Linux
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|