diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-09-02 00:24:40 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-09-02 00:24:40 +0000 |
commit | f8381d9c39a3a8c1ca8351552bbfbbf55246063a (patch) | |
tree | 7d47ff3a097de3a552e16d3d54eadbf0c9aed86c /tools/root.make | |
parent | 24424bab2ae1a7a781b727a94501a75eaa218c56 (diff) |
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.make | 6 |
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 include $(APPSDIR)/plugins/plugins.make endif - ifdef APP_TYPE + ifneq (,$(findstring sdl,$(APP_TYPE))) include $(ROOTDIR)/uisimulator/uisimulator.make endif + + ifneq (,$(findstring android, $(APP_TYPE))) + include $(ROOTDIR)/android/android.make + endif endif # bootloader |