source: ThirdParty/mpqc_open/src/lib/util/misc/Makefile.am@ 47b463

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 47b463 was 72461c, checked in by Frederik Heber <heber@…>, 8 years ago

SRCDIR is now added to CPPFLAGS of tests that need it, added .in file to EXTRA_DIST.

  • Property mode set to 100644
File size: 3.7 KB
Line 
1LIBSCMISCSOURCES = \
2 util/misc/bug.cc \
3 util/misc/compute.cc \
4 util/misc/exenv.cc \
5 util/misc/formio.cc \
6 util/misc/ieee.cc \
7 util/misc/regtime.cc \
8 util/misc/units.cc
9
10# util/misc/ccaenv.cc
11
12
13LIBSCMISCHEADERS = \
14 util/misc/timer.h \
15 util/misc/compute.h \
16 util/misc/ieee.h \
17 util/misc/bug.h \
18 util/misc/exenv.h
19
20# util/misc/autovec.h \
21# util/misc/bug.h \
22# util/misc/ccaenv.h \
23# util/misc/comptmpl.h \
24# util/misc/compute.h \
25# util/misc/exenv.h \
26# util/misc/formio.h \
27# util/misc/ieee.h \
28# util/misc/LIBS.h \
29# util/misc/math.h \
30# util/misc/newstring.h \
31# util/misc/regtime.h \
32# util/misc/scint.h \
33# util/misc/string.h \
34# util/misc/timer.h \
35# util/misc/units.h
36
37
38lib_LTLIBRARIES +=
39noinst_LTLIBRARIES += libSCmisc.la
40libSCmisc_la_includedir = $(includedir)/util/misc
41libSCmisc_la_CPPFLAGS = $(AM_CPPFLAGS)
42libSCmisc_la_LDFLAGS = $(AM_LDFLAGS)
43libSCmisc_la_LIBADD =
44
45nobase_libSCmisc_la_include_HEADERS = ${LIBSCMISCHEADERS}
46
47## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
48## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
49## will therefore be treated as if it were literally part of the target name,
50## and the variable name derived from that.
51## The file extension .cc is recognized by Automake, and makes it produce
52## rules which invoke the C++ compiler to produce a libtool object file (.lo)
53## from each source file. Note that it is not necessary to list header files
54## which are already listed elsewhere in a _HEADERS variable assignment.
55libSCmisc_la_SOURCES = ${LIBSCMISCSOURCES}
56
57## Instruct libtool to include ABI version information in the generated shared
58## library file (.so). The library ABI version is defined in configure.ac, so
59## that all version information is kept in one place.
60#libSCmisc_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
61
62## The generated configuration header is installed in its own subdirectory of
63## $(libdir). The reason for this is that the configuration information put
64## into this header file describes the target platform the installed library
65## has been built for. Thus the file must not be installed into a location
66## intended for architecture-independent files, as defined by the Filesystem
67## Hierarchy Standard (FHS).
68## The nodist_ prefix instructs Automake to not generate rules for including
69## the listed files in the distribution on 'make dist'. Files that are listed
70## in _HEADERS variables are normally included in the distribution, but the
71## configuration header file is generated at configure time and should not be
72## shipped with the source tarball.
73#libSCmisc_libincludedir = $(libdir)/util/misc/include
74#nodist_libSCmisc_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
75
76
77MISCTESTS = \
78 autovectest \
79 comptest \
80 tregtime \
81 scinttest \
82 bugtest \
83 unittest \
84 formiot
85
86TESTS += $(MISCTESTS)
87check_PROGRAMS += $(MISCTESTS)
88noinst_PROGRAMS += $(MISCTESTS)
89
90MISCLIBS = \
91 libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
92
93autovectest_SOURCES = \
94 util/misc/autovectest.cc
95autovectest_LDADD = \
96 $(MISCLIBS)
97
98comptest_SOURCES = \
99 util/misc/comptest.cc
100comptest_LDADD = \
101 $(MISCLIBS)
102
103tregtime_SOURCES = \
104 util/misc/tregtime.cc
105tregtime_LDADD = \
106 $(MISCLIBS)
107
108scinttest_SOURCES = \
109 util/misc/scinttest.cc
110scinttest_LDADD = \
111 $(MISCLIBS)
112
113bugtest_SOURCES = \
114 util/misc/bugtest.cc
115bugtest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/util/misc\"
116bugtest_LDADD = \
117 $(MISCLIBS)
118
119unittest_SOURCES = \
120 util/misc/unittest.cc
121unittest_LDADD = \
122 $(MISCLIBS)
123
124formiot_SOURCES = \
125 util/misc/formiot.cc
126formiot_LDADD = \
127 $(MISCLIBS)
128
129EXTRA_DIST += ./util/misc/bugtest.in
Note: See TracBrowser for help on using the repository browser.