source: src/Bond/AdjacencyMatcher/Makefile.am@ 37fe17

Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 37fe17 was 2edf77, checked in by Frederik Heber <heber@…>, 9 years ago

DISTFIX: Added AdjacencyMatcher and TriangleMatcher noinst targets.

  • distcheck failed on install-check on them.
  • adjacencymatcher and trianglematcher don't ust AUTOTEST_PATH but topdir.
  • Property mode set to 100644
File size: 766 bytes
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4MOSTLYCLEANFILES =
5lib_LTLIBRARIES =
6noinst_LTLIBRARIES =
7pyexec_LTLIBRARIES =
8BUILT_SOURCES =
9noinst_PROGRAMS =
10bin_PROGRAMS =
11check_PROGRAMS =
12EXTRA_DIST =
13
14AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} ${CodePatterns_LDFLAGS}
15AM_CPPFLAGS = \
16 ${BOOST_CPPFLAGS} \
17 ${CodePatterns_CFLAGS}
18
19check_PROGRAMS += \
20 adjacencymatcher
21
22noinst_PROGRAMS += \
23 adjacencymatcher
24
25adjacencymatcher_SOURCES = \
26 Adjacency.hpp \
27 AdjacencyMatcher.cpp
28adjacencymatcher_CPPFLAGS = \
29 $(AM_CPPFLAGS) \
30 -std=c++0x
31adjacencymatcher_LDFLAGS = \
32 $(AM_LDFLAGS) \
33 $(BOOST_FILESYSTEM_LDFLAGS) \
34 $(BOOST_SYSTEM_LDFLAGS)
35adjacencymatcher_LDADD = \
36 $(BOOST_FILESYSTEM_LIBS) \
37 $(BOOST_SYSTEM_LIBS)
Note: See TracBrowser for help on using the repository browser.