diff options
Diffstat (limited to 'android/android.make')
| -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) |