source: ThirdParty/mpqc_open/src/lib/util/keyval/Makefile.am@ 23612c

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 23612c was 23612c, checked in by Frederik Heber <heber@…>, 8 years ago

Split SOURCES and HEADERS and prepended subdir.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1LIBSCKEYVALSOURCES = \
2 util/keyval/ipv2_alloc.cc \
3 util/keyval/ipv2.cc \
4 util/keyval/ipv2_cwk.cc \
5 util/keyval/ipv2_data.cc \
6 util/keyval/ipv2_error.cc \
7 util/keyval/ipv2_karray.cc \
8 util/keyval/ipv2_parse.cc \
9 util/keyval/ipv2_print.cc \
10 util/keyval/ipv2_read.cc \
11 util/keyval/ipv2_scan.cc \
12 util/keyval/keyvalagg.cc \
13 util/keyval/keyvalass.cc \
14 util/keyval/keyval.cc \
15 util/keyval/keyvalipv2.cc \
16 util/keyval/keyvalpre.cc \
17 util/keyval/keyvalstr.cc \
18 util/keyval/keyvalval.cc
19
20
21LIBSCKEYVALHEADERS = \
22 util/keyval/ipv2.h \
23 util/keyval/ipv2_parse.h \
24 util/keyval/ipv2_scan.h \
25 util/keyval/keyval.h \
26 util/keyval/keyvalval.h
27
28
29lib_LTLIBRARIES +=
30noinst_LTLIBRARIES += libSCkeyval.la
31libSCkeyval_la_includedir = $(includedir)/util/keyval
32libSCkeyval_la_CPPFLAGS = $(AM_CPPFLAGS)
33libSCkeyval_la_LDFLAGS = $(AM_LDFLAGS)
34libSCkeyval_la_LIBADD =
35
36nobase_libSCkeyval_la_include_HEADERS = ${LIBSCKEYVALHEADERS}
37
38## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
39## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
40## will therefore be treated as if it were literally part of the target name,
41## and the variable name derived from that.
42## The file extension .cc is recognized by Automake, and makes it produce
43## rules which invoke the C++ compiler to produce a libtool object file (.lo)
44## from each source file. Note that it is not necessary to list header files
45## which are already listed elsewhere in a _HEADERS variable assignment.
46libSCkeyval_la_SOURCES = ${LIBSCKEYVALSOURCES}
47
48## Instruct libtool to include ABI version information in the generated shared
49## library file (.so). The library ABI version is defined in configure.ac, so
50## that all version information is kept in one place.
51#libSCkeyval_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
52
53## The generated configuration header is installed in its own subdirectory of
54## $(libdir). The reason for this is that the configuration information put
55## into this header file describes the target platform the installed library
56## has been built for. Thus the file must not be installed into a location
57## intended for architecture-independent files, as defined by the Filesystem
58## Hierarchy Standard (FHS).
59## The nodist_ prefix instructs Automake to not generate rules for including
60## the listed files in the distribution on 'make dist'. Files that are listed
61## in _HEADERS variables are normally included in the distribution, but the
62## configuration header file is generated at configure time and should not be
63## shipped with the source tarball.
64#libSCkeyval_libincludedir = $(libdir)/util/keyval/include
65#nodist_libSCkeyval_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
66
67
68KEYVALTESTS = \
69 keyvaltest
70
71check_PROGRAMS += $(KEYVALTESTS)
72noinst_PROGRAMS += $(KEYVALTESTS)
73
74KEYVALLIBS = \
75 libSCkeyval.la \
76 libSCcontainer.la \
77 libSCmisc.la \
78 libSCgroup.la \
79 libSCclass.la \
80 libSCstate.la \
81 libSCref.la
82
83keyvaltest_SOURCES = \
84 util/keyval/keyvaltest.cc
85
86keyvaltest_LDADD = \
87 $(KEYVALLIBS)
88
89
Note: See TracBrowser for help on using the repository browser.