1# Copyright 2007-2008 The Android Open Source Project 2 3 4LOCAL_PATH:= $(call my-dir) 5include $(CLEAR_VARS) 6 7LOCAL_MODULE_TAGS := optional 8 9LOCAL_SRC_FILES := $(call all-java-files-under, src) 10 11LOCAL_PACKAGE_NAME := WAPPushManager 12 13LOCAL_STATIC_JAVA_LIBRARIES += android-common 14 15LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags 16 17include $(BUILD_PACKAGE) 18 19# This finds and builds the test apk as well, so a single make does both. 20include $(call all-makefiles-under,$(LOCAL_PATH)) 21