summaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk21
1 files changed, 21 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..ffca1c6
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,21 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := igdbg.lex.l igdbg.yacc.y \
+ ioperm.S iopl.S \
+ main.c gtt.c ppgtt.c display.c ring.c reg.c \
+ debugfs.c
+
+LOCAL_32_BIT_ONLY := true
+LOCAL_CFLAGS += -DANDROID -O2 -Wall -ffloat-store
+
+LOCAL_C_INCLUDES :=
+
+LOCAL_MODULE := igdbg
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SHARED_LIBRARIES :=
+include $(BUILD_EXECUTABLE)
+
+