Home | History | Annotate | Download | only in test_g2g
      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_g2g.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/clib \
     17 	$(ASR_ROOT_DIR)/srec/AcousticModels/include \
     18 	$(ASR_ROOT_DIR)/srec/EventLog/include \
     19 	$(ASR_ROOT_DIR)/srec/Grammar/include \
     20 	$(ASR_ROOT_DIR)/srec/Nametag/include \
     21 	$(ASR_ROOT_DIR)/srec/Recognizer/include \
     22 	$(ASR_ROOT_DIR)/srec/Semproc/include \
     23 	$(ASR_ROOT_DIR)/srec/Vocabulary/include \
     24 
     25 LOCAL_CFLAGS += \
     26 	$(ASR_GLOBAL_DEFINES) \
     27 	$(ASR_GLOBAL_CPPFLAGS) \
     28 
     29 LOCAL_SHARED_LIBRARIES := \
     30 	libESR_Shared \
     31 	libESR_Portable \
     32 	libSR_AcousticModels \
     33 	libSR_AcousticState \
     34 	libSR_Core \
     35 	libSR_EventLog \
     36 	libSR_G2P \
     37 	libSR_Grammar \
     38 	libSR_Nametag \
     39 	libSR_Recognizer \
     40 	libSR_Semproc \
     41 	libSR_Session \
     42 	libSR_Vocabulary \
     43 	
     44 LOCAL_MODULE:= test_g2g
     45 
     46 include $(BUILD_HOST_EXECUTABLE)
     47