1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/common \
@LIBCSTRING_CPPFLAGS@ \
@LIBCERROR_CPPFLAGS@ \
@LIBFVDE_DLL_IMPORT@
TESTS = \
test_api_functions.sh
check_SCRIPTS = \
test_api_functions.sh \
test_runner.sh
EXTRA_DIST = \
$(check_SCRIPTS)
check_PROGRAMS = \
fvde_test_error \
fvde_test_get_version
fvde_test_error_SOURCES = \
fvde_test_error.c \
fvde_test_libfvde.h \
fvde_test_libcstring.h \
fvde_test_macros.h \
fvde_test_unused.h
fvde_test_error_LDADD = \
../libfvde/libfvde.la \
@LIBCSTRING_LIBADD@
fvde_test_get_version_SOURCES = \
fvde_test_get_version.c \
fvde_test_libfvde.h \
fvde_test_libcstring.h \
fvde_test_macros.h \
fvde_test_unused.h
fvde_test_get_version_LDADD = \
../libfvde/libfvde.la \
@LIBCSTRING_LIBADD@
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f Makefile
|