Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / arch / all-android / bootstrap / app / mmakefile
blobbc0fcd72fa3b4cfb4567d961392c3d9b1e683dd0
1 include $(SRCDIR)/config/aros.cfg
3 APP_DIRS  := res src
4 APP_FILES := .classpath .project build.properties AndroidManifest.xml
6 #MM
7 android-bootstrap-setup:
8         @$(ECHO) Setting up Android project...
9         @cd $(GENDIR)/$(CURDIR); \
10         for f in $(APP_DIRS) $(APP_FILES); do ln -nsf $(SRCDIR)/$(CURDIR)/$$f $$f; done; \
11         $(ANDROID) update project --path . --name AROSBootstrap
13 android-bootstrap-ant-build:
14         @$(ECHO) Buiding Android application...
15         @cd $(GENDIR)/$(CURDIR); $(ANT) $(AROS_ANDROID_ANTAPK)
16         @$(CP) -f $(GENDIR)/$(CURDIR)/bin/AROSBootstrap-$(AROS_ANDROID_ANTAPK).apk $(TARGETDIR)/AROSBootstrap.apk
18 android-bootstrap-no-ant:
19         @$(ECHO) Apache Ant is not installed, Android bootstrap is not built.
21 ifeq ($(ANT),)
22     ANT_BUILD_TARGET := android-bootstrap-no-ant
23 else
24     ANT_BUILD_TARGET := android-bootstrap-ant-build
25 endif
27 #MM
28 android-bootstrap-build : $(ANT_BUILD_TARGET)
30 #MM- boot-linux-$(CPU)-android: kernel-bootstrap-hosted android-bootstrap-setup android-bootstrap-build