ANDROID_ASSETS_DIRECTORY = assets ANDROID_BINARIES_DIRECTORY = bin ANDROID_LIBRARIES_DIRECTORY = libs ANDROID_PLATFORM_NAME = armeabi ANDROID_PACKAGE_FILE = $(ANDROID_BINARIES_DIRECTORY)/$(ANDROID_PACKAGE_NAME)-debug.apk ANDROID_PLATFORM_DIRECTORY = $(ANDROID_LIBRARIES_DIRECTORY)/$(ANDROID_PLATFORM_NAME) ANDROID_LOCAL_FILES = local.properties local-files: $(ANDROID_LOCAL_FILES) local.properties: android update project --path . all: $(ANDROID_PACKAGE_FILE) $(ANDROID_PACKAGE_FILE): local-files ant debug clean:: -rm -f $(ANDROID_LOCAL_FILES) -rm -f -r $(ANDROID_BINARIES_DIRECTORY) -rm -f -r $(ANDROID_LIBRARIES_DIRECTORY)/*/ -rm -f -r gen install: adb install $(ANDROID_PACKAGE_FILE) reinstall: adb install -r $(ANDROID_PACKAGE_FILE) uninstall: adb uninstall $(ANDROID_PACKAGE_PATH)