Makefile.am revision 6fc018e4
1check_SCRIPTS=run-test.sh 2TEST_EXTENSIONS = \ 3 .sh \ 4 $(NULL) 5 6AM_TESTS_ENVIRONMENT= \ 7 src=${srcdir}; export src; \ 8 EXEEXT=${EXEEXT}; export EXEEXT; \ 9 $(NULL) 10 11SH_LOG_COMPILER = sh 12 13TESTS=run-test.sh 14 15TESTDATA=4x6.pcf 8x16.pcf out.expected fonts.conf.in 16 17AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) 18 19check_PROGRAMS = test-migration 20if HAVE_PTHREAD 21check_PROGRAMS += test-pthread 22test_pthread_LDADD = $(top_builddir)/src/libfontconfig.la 23# We don't enable this test by default because it will require config and fonts 24# to meaningfully test anything, and we are not installed yet. 25#TESTS += test-pthread 26endif 27noinst_PROGRAMS = $(check_PROGRAMS) 28 29test_migration_LDADD = $(top_builddir)/src/libfontconfig.la 30 31EXTRA_DIST=$(check_SCRIPTS) $(TESTDATA) 32 33CLEANFILES= 34 35-include $(top_srcdir)/git.mk 36