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