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