1 # Copyright 2006 The Android Open Source Project 2 3 LOCAL_PATH:= $(call my-dir) 4 include $(CLEAR_VARS) 5 6 # common settings for all ASR builds, exports some variables for sub-makes 7 include $(ASR_MAKE_DIR)/Makefile.defs 8 9 LOCAL_SRC_FILES:= \ 10 test_swiarb.c \ 11 12 LOCAL_C_INCLUDES := \ 13 $(ASR_ROOT_DIR)/shared/include \ 14 $(ASR_ROOT_DIR)/portable/include \ 15 $(ASR_ROOT_DIR)/srec/include \ 16 $(ASR_ROOT_DIR)/srec/Grammar/include \ 17 $(ASR_ROOT_DIR)/srec/Session/include \ 18 $(ASR_ROOT_DIR)/srec/Vocabulary/include \ 19 20 LOCAL_CFLAGS += \ 21 $(ASR_GLOBAL_DEFINES) \ 22 $(ASR_GLOBAL_CPPFLAGS) \ 23 24 LOCAL_SHARED_LIBRARIES := \ 25 libESR_Shared \ 26 libESR_Portable \ 27 libSR_AcousticModels \ 28 libSR_AcousticState \ 29 libSR_Core \ 30 libSR_EventLog \ 31 libSR_G2P \ 32 libSR_Grammar \ 33 libSR_Nametag \ 34 libSR_Recognizer \ 35 libSR_Semproc \ 36 libSR_Session \ 37 libSR_Vocabulary \ 38 39 LOCAL_MODULE:= test_swiarb 40 41 LOCAL_32_BIT_ONLY := true 42 43 include $(BUILD_HOST_EXECUTABLE) 44