11 lines
180 B
Makefile
11 lines
180 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := exploit
|
|
LOCAL_SRC_FILES := exploit.c
|
|
LOCAL_CFLAGS := -fno-stack-protector -O0
|
|
include $(BUILD_EXECUTABLE)
|
|
|