1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := $(call all-java-files-under, \ 5 engine/src/android \ 6 engine/src/core \ 7 engine/src/core-plugins \ 8 engine/src/ogre) 9 10LOCAL_MODULE := jmonkeyengine 11LOCAL_SDK_VERSION := 9 12LOCAL_MODULE_TAGS := optional 13 14# jMonkeyEngine needs these resources, but they will eventually get 15# stripped out even if they're compiled into the jar. You will need 16# to duplicate them into your project's assets. See the README for 17# more info. 18# LOCAL_JAVA_RESOURCE_DIRS := engine/src/core-data 19 20include $(BUILD_STATIC_JAVA_LIBRARY) 21