Home | History | Annotate | Download | only in Mms
      1 # Copyright 2007-2008 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_MODULE_TAGS := optional
      7 
      8 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      9 
     10 LOCAL_PACKAGE_NAME := Mms
     11 
     12 # Builds against the public SDK
     13 #LOCAL_SDK_VERSION := current
     14 
     15 LOCAL_STATIC_JAVA_LIBRARIES += android-common
     16 
     17 LOCAL_REQUIRED_MODULES := SoundRecorder
     18 
     19 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     20 
     21 include $(BUILD_PACKAGE)
     22 
     23 # This finds and builds the test apk as well, so a single make does both.
     24 include $(call all-makefiles-under,$(LOCAL_PATH))
     25