source: ThirdParty/levmar/src/Makefile.am@ 23ad4f

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.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph 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 PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes
Last change on this file since 23ad4f was 206fa9, checked in by Frederik Heber <heber@…>, 8 years ago

Not installing levmar's lmdemo.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1
2AM_LDFLAGS = $(LDFLAGS)
3AM_CFLAGS = $(CFLAGS)
4
5LIBSOURCES = \
6 Axb.c \
7 lm.c \
8 lmbc.c \
9 lmblec.c \
10 lmbleic.c \
11 lmlec.c \
12 misc.c
13
14LIBCORESOURCES = \
15 Axb_core.c \
16 lm_core.c \
17 lmbc_core.c \
18 lmblec_core.c \
19 lmbleic_core.c \
20 lmlec_core.c \
21 misc_core.c
22
23EXTRA_DIST = \
24 $(LIBCORESOURCES)
25
26LIBHEADERS = \
27 compiler.h \
28 levmar.h \
29 misc.h
30
31lib_LTLIBRARIES = liblevmar.la
32liblevmar_la_includedir = $(includedir)/levmar/
33liblevmar_la_CFLAGS = \
34 $(AM_CFLAGS)
35liblevmar_la_LDFLAGS = \
36 $(AM_LDFLAGS)
37liblevmar_la_LIBADD = \
38 $(LAPACK_LIBS) \
39 $(BLAS_LIBS) \
40 $(F2C_LIBS) \
41 $(LIBS)
42nobase_liblevmar_la_include_HEADERS = $(LIBHEADERS)
43
44## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
45## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
46## will therefore be treated as if it were literally part of the target name,
47## and the variable name derived from that.
48## The file extension .cc is recognized by Automake, and makes it produce
49## rules which invoke the C++ compiler to produce a libtool object file (.lo)
50## from each source file. Note that it is not necessary to list header files
51## which are already listed elsewhere in a _HEADERS variable assignment.
52liblevmar_la_SOURCES = ${LIBSOURCES}
53liblevmar_la_DEPENDENCIES = $(LIBCORESOURCES)
54
55## Instruct libtool to include ABI version information in the generated shared
56## library file (.so). The library ABI version is defined in configure.ac, so
57## that all version information is kept in one place.
58liblevmar_la_LDFLAGS += -version-info $(LEVMAR_SO_VERSION)
59
60## The generated configuration header is installed in its own subdirectory of
61## $(libdir). The reason for this is that the configuration information put
62## into this header file describes the target platform the installed library
63## has been built for. Thus the file must not be installed into a location
64## intended for architecture-independent files, as defined by the Filesystem
65## Hierarchy Standard (FHS).
66## The nodist_ prefix instructs Automake to not generate rules for including
67## the listed files in the distribution on 'make dist'. Files that are listed
68## in _HEADERS variables are normally included in the distribution, but the
69## configuration header file is generated at configure time and should not be
70## shipped with the source tarball.
71liblevmar_la_libincludedir = $(libdir)/levmar/include
72nodist_liblevmar_la_libinclude_HEADERS = $(top_builddir)/liblevmar_config.h
73
74## Install the generated pkg-config file (.pc) into the expected location for
75## architecture-dependent package configuration information. Occasionally,
76## pkg-config files are also used for architecture-independent data packages,
77## in which case the correct install location would be $(datadir)/pkgconfig.
78pkgconfigdir = $(libdir)/pkgconfig
79pkgconfig_DATA = $(top_builddir)/levmar.pc
80
81
82noinst_PROGRAMS = lmdemo
83check_PROGRAMS = lmdemo
84TESTS = lmdemo
85
86lmdemo_SOURCES = lmdemo.c levmar.h
87lmdemo_LDFLAGS = $(AM_LDFLAGS)
88lmdemo_LDADD = liblevmar.la
Note: See TracBrowser for help on using the repository browser.