1 |
|
---|
2 | AM_LDFLAGS = $(LDFLAGS)
|
---|
3 | AM_CFLAGS = $(CFLAGS)
|
---|
4 |
|
---|
5 | LIBSOURCES = \
|
---|
6 | Axb.c \
|
---|
7 | lm.c \
|
---|
8 | lmbc.c \
|
---|
9 | lmblec.c \
|
---|
10 | lmbleic.c \
|
---|
11 | lmlec.c \
|
---|
12 | misc.c
|
---|
13 |
|
---|
14 | LIBCORESOURCES = \
|
---|
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 |
|
---|
23 | EXTRA_DIST = \
|
---|
24 | $(LIBCORESOURCES)
|
---|
25 |
|
---|
26 | LIBHEADERS = \
|
---|
27 | compiler.h \
|
---|
28 | levmar.h \
|
---|
29 | misc.h
|
---|
30 |
|
---|
31 | lib_LTLIBRARIES = liblevmar.la
|
---|
32 | liblevmar_la_includedir = $(includedir)/levmar/
|
---|
33 | liblevmar_la_CFLAGS = \
|
---|
34 | $(AM_CFLAGS)
|
---|
35 | liblevmar_la_LDFLAGS = \
|
---|
36 | $(AM_LDFLAGS)
|
---|
37 | liblevmar_la_LIBADD = \
|
---|
38 | $(LAPACK_LIBS) \
|
---|
39 | $(BLAS_LIBS) \
|
---|
40 | $(F2C_LIBS) \
|
---|
41 | $(LIBS)
|
---|
42 | nobase_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.
|
---|
52 | liblevmar_la_SOURCES = ${LIBSOURCES}
|
---|
53 | liblevmar_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.
|
---|
58 | liblevmar_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.
|
---|
71 | liblevmar_la_libincludedir = $(libdir)/levmar/include
|
---|
72 | nodist_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.
|
---|
78 | pkgconfigdir = $(libdir)/pkgconfig
|
---|
79 | pkgconfig_DATA = $(top_builddir)/levmar.pc
|
---|
80 |
|
---|
81 |
|
---|
82 | noinst_PROGRAMS = lmdemo
|
---|
83 | check_PROGRAMS = lmdemo
|
---|
84 | TESTS = lmdemo
|
---|
85 |
|
---|
86 | lmdemo_SOURCES = lmdemo.c levmar.h
|
---|
87 | lmdemo_LDFLAGS = $(AM_LDFLAGS)
|
---|
88 | lmdemo_LDADD = liblevmar.la
|
---|