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 /android | |
| parent | 24424bab2ae1a7a781b727a94501a75eaa218c56 (diff) | |
| download | rockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.zip rockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.tar.gz rockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.tar.bz2 rockbox-f8381d9c39a3a8c1ca8351552bbfbbf55246063a.tar.xz | |
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 'android')
| -rw-r--r-- | android/android.make | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/android/android.make b/android/android.make new file mode 100644 index 0000000..e87ba39 --- /dev/null +++ b/android/android.make @@ -0,0 +1,16 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# + +# pretty empty here: android port has no additional .c files to compile, +# but a different rule for the final librockbox.so + +.SECONDEXPANSION: # $$(OBJ) is not populated until after this + +$(BUILDDIR)/$(BINARY): $$(OBJ) $(VOICESPEEXLIB) $(FIRMLIB) $(SKINLIB) + $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(LDOPTS) $(GLOBAL_LDOPTS) |