From a640164cd3d354c407d1dce3b654be92a7dbc16a Mon Sep 17 00:00:00 2001 From: atinm Date: Wed, 18 May 2011 18:15:15 -0400 Subject: Refactored into galaxysmtd Change-Id: I82af7904ec373d415dfb34069d8f7d6981cc8fc7 --- Android.mk | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Android.mk (limited to 'Android.mk') diff --git a/Android.mk b/Android.mk new file mode 100644 index 0000000..54e40d4 --- /dev/null +++ b/Android.mk @@ -0,0 +1,42 @@ +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH := $(call my-dir) + +ifeq ($(TARGET_DEVICE),galaxysmtd) + +include $(CLEAR_VARS) +LOCAL_SRC_FILES := s3c-keypad.kcm +LOCAL_MODULE_TAGS := optional +include $(BUILD_KEY_CHAR_MAP) + +include $(CLEAR_VARS) +LOCAL_SRC_FILES := cypress-touchkey.kcm +LOCAL_MODULE_TAGS := optional +include $(BUILD_KEY_CHAR_MAP) + +include $(CLEAR_VARS) +LOCAL_SRC_FILES := setup_fs.c +LOCAL_MODULE := setup_fs +LOCAL_MODULE_TAGS := optional +#LOCAL_SHARED_LIBRARIES += libext4_utils libz +include $(BUILD_EXECUTABLE) + +ifneq ($(TARGET_SIMULATOR),true) +include $(call all-makefiles-under,$(LOCAL_PATH)) +endif + +endif + + -- cgit v1.1