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