diff --git a/Test/Makefile.am b/Test/Makefile.am --- a/Test/Makefile.am +++ b/Test/Makefile.am @@ -1,12 +1,15 @@ bin_PROGRAMS = ColorFull_test ColorFull_test_SOURCES = ColorFull_test.cc ColorFull_test_CPPFLAGS = $(AM_CPPFLAGS) -I $(top_builddir)/include ColorFull_test_LDADD = $(top_builddir)/Core/libColorFull.la all: check$(EXEEXT): mkdir -p ColorResults @echo ./ColorFull_test @./ColorFull_test && echo "# $@ OK #" \ || (echo "###### $@ BAD ######"; false) + +DISTCLEANFILES = $(top_builddir)/Test/ColorResults/CF_TB_q_1_g_3 + diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac @@ -1,36 +1,35 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.59]) AC_INIT([ColorFull],[1.1],[malin.sjodahl@thep.lu.se],[ColorFull]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) -AC_CONFIG_SRCDIR(["m4/$PACKAGE_TARNAME.m4"]) AC_CANONICAL_HOST AC_LANG([C++]) AM_INIT_AUTOMAKE([1.9 gnu dist-bzip2 -Wall]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) dnl Checks for programs. AC_PROG_CXX AX_CXX_COMPILE_STDCXX([11],[noext],[mandatory]) AC_PROG_INSTALL AC_PROG_MAKE_SET AC_PROG_LN_S AM_PROG_AR AC_DISABLE_STATIC AC_LIBTOOL_DLOPEN AC_PROG_LIBTOOL AM_CPPFLAGS="-I\$(top_builddir)/include" AC_SUBST(AM_CPPFLAGS) AC_CONFIG_FILES([Core/Makefile Examples/Makefile Test/Makefile include/Makefile Makefile]) AC_OUTPUT