OSDN Git Service

Android.mk: compile this module only if BOARD_USES_TSLIB is true
authorChih-Wei Huang <cwhuang@linux.org.tw>
Thu, 7 Jan 2010 10:03:30 +0000 (18:03 +0800)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Thu, 7 Jan 2010 10:03:30 +0000 (18:03 +0800)
Android.mk

index 580b44d..df7c0ef 100644 (file)
@@ -1,9 +1,3 @@
-LOCAL_PATH := $(call my-dir)
-
-subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \
-               plugins \
-               src \
-               tests \
-       ))
-
-include $(subdirs)
+ifeq ($(BOARD_USES_TSLIB),true)
+include $(call all-subdir-makefiles)
+endif