mirror of
https://github.com/ioacademy-jikim/device_driver
synced 2025-06-07 07:56:08 +00:00
9 lines
187 B
Makefile
9 lines
187 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CFLAGS := -fPIE
|
|
LOCAL_LDFLAGS := -fPIE -pie
|
|
LOCAL_MODULE := myapp
|
|
LOCAL_SRC_FILES := myapp.c
|
|
include $(BUILD_EXECUTABLE)
|
|
|