OSDN Git Service

init: move the init.sh execution to the post-fs stage
[android-x86/device-generic-common.git] / tablet-mode / Android.mk
1 # Copyright 2012 The Android-x86 Open Source Project
2
3 LOCAL_PATH := $(call my-dir)
4 include $(CLEAR_VARS)
5
6 LOCAL_SRC_FILES:= tablet-mode.c
7
8 LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
9 LOCAL_SHARED_LIBRARIES := liblog
10
11 LOCAL_CFLAGS := -O2 -Wall
12
13 ifeq ($(TARGET_ARCH),x86)
14 LOCAL_CFLAGS += -Ulinux
15 endif
16
17 LOCAL_MODULE := tablet-mode
18 LOCAL_MODULE_TAGS := optional
19 #LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
20
21 include $(BUILD_EXECUTABLE)