summaryrefslogtreecommitdiff
path: root/Android.mk
blob: ffca1c6373ace7af91def9540b4627b81316a3be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)