For Android examples, replace hard coded tool names with those detected at configure time.
This commit is contained in:
parent
39433f12e4
commit
8128b1e12f
1 changed files with 5 additions and 5 deletions
|
|
@ -738,10 +738,10 @@ javascript_clean:
|
|||
##### ANDROID ######
|
||||
##################################################################
|
||||
|
||||
ANDROID = android
|
||||
ANDROID_NDK_BUILD = ndk-build
|
||||
ANDROID_ADB = adb
|
||||
ANT = ant
|
||||
ANDROID = @ANDROID@
|
||||
ANDROID_NDK_BUILD = @NDKBUILD@
|
||||
ANDROID_ADB = @ADB@
|
||||
ANT = @ANT@
|
||||
TARGETID = 1
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
|
@ -784,7 +784,7 @@ android_version:
|
|||
# -----------------------------------------------------------------
|
||||
|
||||
android_clean:
|
||||
test -n "$(SRCDIR)" && cd $(SRCDIR) ; ant -q -logfile /dev/null clean
|
||||
test -n "$(SRCDIR)" && cd $(SRCDIR) ; $(ANT) -q -logfile /dev/null clean
|
||||
rm -f $(INTERFACEDIR)$(TARGET)_wrap.*
|
||||
rm -f `find $(PACKAGEDIR) -name \*.java | grep -v $(PROJECTNAME).java`
|
||||
rm -rf obj
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue