summaryrefslogtreecommitdiff
path: root/tools/root.make
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-02 00:24:40 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-02 00:24:40 +0000
commitf8381d9c39a3a8c1ca8351552bbfbbf55246063a (patch)
tree7d47ff3a097de3a552e16d3d54eadbf0c9aed86c /tools/root.make
parent24424bab2ae1a7a781b727a94501a75eaa218c56 (diff)
downloadrockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.tar.gz
rockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.zip
Android: don't compile stubs.c and kill off libuisimulator entirely.
Seperate make rules in a almost empty android.make. Also add forgotten powermgmt-android.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27977 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/root.make')
-rw-r--r--tools/root.make6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/root.make b/tools/root.make
index eda27b77c0..3d19e6287e 100644
--- a/tools/root.make
+++ b/tools/root.make
@@ -97,9 +97,13 @@ else
97 include $(APPSDIR)/plugins/plugins.make 97 include $(APPSDIR)/plugins/plugins.make
98 endif 98 endif
99 99
100 ifdef APP_TYPE 100 ifneq (,$(findstring sdl,$(APP_TYPE)))
101 include $(ROOTDIR)/uisimulator/uisimulator.make 101 include $(ROOTDIR)/uisimulator/uisimulator.make
102 endif 102 endif
103
104 ifneq (,$(findstring android, $(APP_TYPE)))
105 include $(ROOTDIR)/android/android.make
106 endif
103 107
104endif # bootloader 108endif # bootloader
105 109