summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorDaniel Hillenbrand <daniel.hillenbrand@codeworkx.de>2012-06-22 23:59:41 +0200
committerDaniel Hillenbrand <daniel.hillenbrand@codeworkx.de>2012-06-23 00:05:52 +0200
commit5da1224da23049dd11a72b56a8886fc278d4150c (patch)
treec2aaf90afc7d46e414007b96ba1516c31793cfa2 /Android.mk
downloaddevice_samsung_p3110-5da1224da23049dd11a72b56a8886fc278d4150c.zip
device_samsung_p3110-5da1224da23049dd11a72b56a8886fc278d4150c.tar.gz
device_samsung_p3110-5da1224da23049dd11a72b56a8886fc278d4150c.tar.bz2
initial commit
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..8aface1
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,30 @@
+#
+# Copyright (C) 2012 The CyanogenMod 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.
+#
+
+# WARNING: Everything listed here will be built on ALL platforms,
+# including x86, the emulator, and the SDK. Modules must be uniquely
+# named (liblights.tuna), and must build everywhere, or limit themselves
+# to only building on ARM if they include assembly. Individual makefiles
+# are responsible for having their own logic, for fine-grained control.
+
+LOCAL_PATH := $(call my-dir)
+
+ifeq ($(TARGET_DEVICE),p3110)
+
+COMMON_P31XX_DIRS := liblights
+include $(foreach common_dirs,$(COMMON_P31XX_DIRS),device/samsung/p3100/$(common_dirs)/Android.mk)
+
+endif