1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 |
|
---|
5 | PARSERTESTSSOURCES = \
|
---|
6 | ../Parser/unittests/DiscreteValueUnitTest.cpp \
|
---|
7 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
8 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
9 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
10 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
11 | ../Parser/unittests/ParserXyzUnitTest.cpp
|
---|
12 |
|
---|
13 | PARSERTESTSHEADERS = \
|
---|
14 | ../Parser/unittests/DiscreteValueUnitTest.hpp \
|
---|
15 | ../Parser/unittests/ParserMpqcUnitTest.hpp \
|
---|
16 | ../Parser/unittests/ParserPcpUnitTest.hpp \
|
---|
17 | ../Parser/unittests/ParserPdbUnitTest.hpp \
|
---|
18 | ../Parser/unittests/ParserTremoloUnitTest.hpp \
|
---|
19 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
20 |
|
---|
21 | PARSERTESTS = \
|
---|
22 | DiscreteValueUnitTest \
|
---|
23 | ParserMpqcUnitTest \
|
---|
24 | ParserPcpUnitTest \
|
---|
25 | ParserPdbUnitTest \
|
---|
26 | ParserTremoloUnitTest \
|
---|
27 | ParserXyzUnitTest
|
---|
28 |
|
---|
29 | TESTS += $(PARSERTESTS)
|
---|
30 | check_PROGRAMS += $(PARSERTESTS)
|
---|
31 | noinst_PROGRAMS += $(PARSERTESTS)
|
---|
32 |
|
---|
33 | PARSERLIBS = \
|
---|
34 | ../libMolecuilderUI.la \
|
---|
35 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
36 | ${CodePatterns_LIBS}
|
---|
37 | # $(BOOST_LIB)
|
---|
38 |
|
---|
39 |
|
---|
40 | DiscreteValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
41 | ../Parser/unittests/DiscreteValueUnitTest.cpp \
|
---|
42 | ../Parser/unittests/DiscreteValueUnitTest.hpp \
|
---|
43 | ../Parser/DiscreteValue.hpp \
|
---|
44 | ../Parser/DiscreteValue_impl.hpp
|
---|
45 | #DiscreteValueUnitTest_LDADD
|
---|
46 |
|
---|
47 | ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
48 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
---|
49 | ../Parser/unittests/ParserMpqcUnitTest.hpp
|
---|
50 | ParserMpqcUnitTest_LDADD = ${PARSERLIBS}
|
---|
51 |
|
---|
52 | ParserPcpUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
53 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
---|
54 | ../Parser/unittests/ParserPcpUnitTest.hpp
|
---|
55 | ParserPcpUnitTest_LDADD = ${PARSERLIBS}
|
---|
56 |
|
---|
57 | ParserPdbUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
58 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
---|
59 | ../Parser/unittests/ParserPdbUnitTest.hpp
|
---|
60 | ParserPdbUnitTest_LDADD = ${PARSERLIBS}
|
---|
61 |
|
---|
62 | ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
63 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
---|
64 | ../Parser/unittests/ParserTremoloUnitTest.hpp
|
---|
65 | ParserTremoloUnitTest_LDADD = ${PARSERLIBS}
|
---|
66 |
|
---|
67 | ParserXyzUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
68 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
---|
69 | ../Parser/unittests/ParserXyzUnitTest.hpp
|
---|
70 | ParserXyzUnitTest_LDADD = ${PARSERLIBS}
|
---|
71 |
|
---|
72 |
|
---|
73 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|