25 lines
509 B
Makefile
25 lines
509 B
Makefile
|
check_PROGRAMS = \
|
||
|
test_fopen \
|
||
|
test_huff_code \
|
||
|
test_bitarr \
|
||
|
test_bit_encode \
|
||
|
test_build_directory \
|
||
|
test_heap \
|
||
|
test_filename \
|
||
|
test_readfile
|
||
|
|
||
|
TESTS = $(check_PROGRAMS)
|
||
|
|
||
|
AM_CFLAGS =\
|
||
|
-I$(top_srcdir)/include/sphinxbase \
|
||
|
-I$(top_srcdir)/include \
|
||
|
-I$(top_builddir)/include \
|
||
|
-DTESTDATADIR=\"$(top_srcdir)/test/regression\" \
|
||
|
-DLMDIR=\"${top_srcdir}/test/unit/test_ngram\"
|
||
|
|
||
|
LDADD = ${top_builddir}/src/libsphinxbase/libsphinxbase.la
|
||
|
|
||
|
noinst_HEADERS = test_macros.h
|
||
|
|
||
|
CLEANFILES = *.log *.out
|