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