hepmc - Blame information for rev 128
Subversion Repositories:
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 17 | garren | 1 | # Applicable to each test program: |
| 2 | |||
| 3 | if USE_GMAKE | ||
| 4 | MAKE = gmake | ||
| 5 | endif | ||
| 6 | |||
| 43 | garren | 7 | INCLUDES = -I$(top_builddir) -I$(top_srcdir) |
| 17 | garren | 8 | |
| 9 | # libraries to link, and whence | ||
| 10 | if BUILD_STATIC | ||
| 11 | LDADD = $(top_builddir)/src/libHepMC.a \ | ||
| 43 | garren | 12 | $(top_builddir)/fio/libHepMCfio.a |
| 17 | garren | 13 | else |
| 14 | if BUILD_VISUAL | ||
| 15 | LDADD = $(top_builddir)/src/HepMC.$(SHEXT) \ | ||
| 43 | garren | 16 | $(top_builddir)/fio/HepMCfio.$(SHEXT) |
| 17 | garren | 17 | else |
| 18 | LIBS += $(MY_LD)$(top_builddir)/src \ | ||
| 43 | garren | 19 | $(MY_LD)$(top_builddir)/fio |
| 17 | garren | 20 | LDADD = $(top_builddir)/src/libHepMC.$(SHEXT) \ |
| 43 | garren | 21 | $(top_builddir)/fio/libHepMCfio.$(SHEXT) |
| 17 | garren | 22 | endif |
| 23 | endif | ||
| 24 | |||
| 25 | # Identify executables needed during testing: | ||
| 107 | garren | 26 | check_PROGRAMS = testHepMC testHepMCIteration testMass \ |
| 128 | garren | 27 | testPrintBug testSimpleVector testDeprecated |
| 17 | garren | 28 | |
| 128 | garren | 29 | check_SCRIPTS = testHepMC.sh testHepMCIteration.sh testPrintBug.sh \ |
| 30 | testMass.sh testDeprecated.sh | ||
| 17 | garren | 31 | |
| 32 | # Identify test(s) to run when 'make check' is requested: | ||
| 107 | garren | 33 | TESTS = testHepMC.sh testHepMCIteration.sh testMass.sh \ |
| 128 | garren | 34 | testPrintBug.sh testSimpleVector testDeprecated.sh |
| 17 | garren | 35 | |
| 36 | # Identify the test(s) for which failure is the intended outcome: | ||
| 37 | XFAIL_TESTS = | ||
| 38 | |||
| 39 | # Identify the dependencies on a per-test basis: | ||
| 88 | garren | 40 | testHepMC_SOURCES = testHepMC.cc |
| 107 | garren | 41 | testMass_SOURCES = testMass.cc |
| 88 | garren | 42 | testHepMCIteration_SOURCES = testHepMCIteration.cc |
| 43 | testPrintBug_SOURCES = testPrintBug.cc | ||
| 44 | testSimpleVector_SOURCES = testSimpleVector.cc | ||
| 128 | garren | 45 | testDeprecated_SOURCES = testDeprecated.cc |
| 17 | garren | 46 | |
| 47 | # Identify input data file(s) and prototype output file(s): | ||
| 40 | garren | 48 | EXTRA_DIST = testHepMC.input testHepMC.output testHepMCParticle.output \ |
| 88 | garren | 49 | testPrintBug.output testHepMCExtended.dat \ |
| 128 | garren | 50 | testHepMCIteration.output testHepMCIterationExtended.output \ |
| 51 | testAscii.input testAscii.dat | ||
| 17 | garren | 52 | |
| 53 | # Identify generated file(s) to be removed when 'make clean' is requested: | ||
| 40 | garren | 54 | CLEANFILES = testHepMC.out testHepMCParticle.out testHepMCExtended.out \ |
| 128 | garren | 55 | testPrintBug.out testHepMCIterationExtended.out testMass.out \ |
| 56 | testAscii.dat testHepMCExtended.dat |
