source: git/libpolys/tests/Makefile.am @ 9f7665

fieker-DuValspielwiese
Last change on this file since 9f7665 was 38750a, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Minor BS cleanup: no need in -I${srcdir} and -I${builddir} in CPPFLAGS
  • Property mode set to 100644
File size: 2.5 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../m4
2
3AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} \
4${FACTORY_INCLUDES} ${RESOURCES_INCLUDES} ${OMALLOC_INCLUDES} \
5${FLINT_CFLAGS} ${NTL_CFLAGS} ${GMP_CFLAGS}
6
7TESTS = simple_test \
8    coeffs_test \
9    polys_test \
10    rings_test
11
12check_PROGRAMS = $(TESTS)
13
14nodist_simple_test_SOURCES = simple_test_runner.cpp
15
16nodist_coeffs_test_SOURCES = coeffs_test_runner.cpp
17nodist_polys_test_SOURCES = polys_test_runner.cpp
18nodist_rings_test_SOURCES = rings_test_runner.cpp
19
20coeffs_test_LDADD = ${top_builddir}/coeffs/libcoeffs.la
21polys_test_LDADD = ${top_builddir}/polys/libpolys.la
22rings_test_LDADD = $(polys_test_LDADD)
23
24BUILT_SOURCES = gftables MOD \
25        simple_test_runner.cpp coeffs_test_runner.cpp polys_test_runner.cpp rings_test_runner.cpp
26
27gftables: ${top_srcdir}/../factory/gftables
28        ln -snf ${top_srcdir}/../factory/gftables ${builddir}
29
30MOD: ${top_builddir}/polys/.libs
31        ln -snf ${top_builddir}/polys/.libs/ ${builddir}/MOD
32
33# How to generate *_runner.cpp
34simple_test_runner.cpp: simple_test.h
35        ${srcdir}/cxxtestgen.pl --no-eh -o $@ --error-printer ${srcdir}/simple_test.h
36
37coeffs_test_runner.cpp: coeffs_test.h
38        ${srcdir}/cxxtestgen.pl --no-eh -o $@ --error-printer ${srcdir}/coeffs_test.h
39
40polys_test_runner.cpp: polys_test.h
41        ${srcdir}/cxxtestgen.pl --no-eh -o $@ --error-printer ${srcdir}/polys_test.h
42
43rings_test_runner.cpp: rings_test.h
44        ${srcdir}/cxxtestgen.pl --no-eh -o $@ --error-printer ${srcdir}/rings_test.h
45
46CLEANFILES = $(BUILT_SOURCES)
47
48EXTRA_DIST = cxxtestgen.pl simple_test.h coeffs_test.h polys_test.h rings_test.h common.h \
49    cxxtest/Descriptions.h       cxxtest/ParenPrinter.h      cxxtest/TestListener.h     \
50    cxxtest/DummyDescriptions.h  cxxtest/QtGui.h             cxxtest/TestRunner.h       \
51    cxxtest/ErrorFormatter.h     cxxtest/RealDescriptions.h  cxxtest/TestSuite.h        \
52    cxxtest/ErrorPrinter.h       cxxtest/SelfTest.h          cxxtest/TestTracker.h      \
53    cxxtest/Flags.h              cxxtest/StdHeaders.h        cxxtest/ValueTraits.h      \
54    cxxtest/GlobalFixture.h      cxxtest/StdioFilePrinter.h  cxxtest/Win32Gui.h         \
55    cxxtest/Gui.h                cxxtest/StdioPrinter.h      cxxtest/X11Gui.h           \
56    cxxtest/LinkedList.h         cxxtest/StdValueTraits.h    cxxtest/YesNoRunner.h      \
57    cxxtest/Mock.h               cxxtest/TeeListener.h                                  \
58    cxxtest/Descriptions.cpp     cxxtest/LinkedList.cpp      cxxtest/TestSuite.cpp      \
59    cxxtest/DummyDescriptions.cpp cxxtest/RealDescriptions.cpp  cxxtest/TestTracker.cpp \
60    cxxtest/GlobalFixture.cpp    cxxtest/Root.cpp            cxxtest/ValueTraits.cpp
Note: See TracBrowser for help on using the repository browser.