1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | TESSELATIONSOURCE = \
|
---|
5 | Tesselation/ApproximateShapeArea.cpp \
|
---|
6 | Tesselation/ApproximateShapeVolume.cpp \
|
---|
7 | Tesselation/boundary.cpp \
|
---|
8 | Tesselation/BoundaryLineSet.cpp \
|
---|
9 | Tesselation/BoundaryPointSet.cpp \
|
---|
10 | Tesselation/BoundaryPolygonSet.cpp \
|
---|
11 | Tesselation/BoundaryTriangleSet.cpp \
|
---|
12 | Tesselation/CandidateForTesselation.cpp \
|
---|
13 | Tesselation/ellipsoid.cpp \
|
---|
14 | Tesselation/tesselation.cpp \
|
---|
15 | Tesselation/tesselationhelpers.cpp \
|
---|
16 | Tesselation/triangleintersectionlist.cpp
|
---|
17 |
|
---|
18 | TESSELATIONHEADER = \
|
---|
19 | Tesselation/ApproximateShapeArea.hpp \
|
---|
20 | Tesselation/ApproximateShapeVolume.hpp \
|
---|
21 | Tesselation/boundary.hpp \
|
---|
22 | Tesselation/BoundaryLineSet.hpp \
|
---|
23 | Tesselation/BoundaryMaps.hpp \
|
---|
24 | Tesselation/BoundaryPointSet.hpp \
|
---|
25 | Tesselation/BoundaryPolygonSet.hpp \
|
---|
26 | Tesselation/BoundaryTriangleSet.hpp \
|
---|
27 | Tesselation/CandidateForTesselation.hpp \
|
---|
28 | Tesselation/ellipsoid.hpp \
|
---|
29 | Tesselation/tesselation.hpp \
|
---|
30 | Tesselation/tesselationhelpers.hpp \
|
---|
31 | Tesselation/triangleintersectionlist.hpp
|
---|
32 |
|
---|
33 | noinst_LTLIBRARIES += libMolecuilderTesselation.la
|
---|
34 | libMolecuilderTesselation_la_includedir = $(includedir)/MoleCuilder/
|
---|
35 |
|
---|
36 | nobase_libMolecuilderTesselation_la_include_HEADERS = \
|
---|
37 | ${TESSELATIONHEADER}
|
---|
38 |
|
---|
39 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
40 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
41 | ## will therefore be treated as if it were literally part of the target name,
|
---|
42 | ## and the variable name derived from that.
|
---|
43 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
44 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
45 | ## from each source file. Note that it is not necessary to list header files
|
---|
46 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
47 | libMolecuilderTesselation_la_SOURCES = \
|
---|
48 | ${TESSELATIONSOURCE}
|
---|
49 |
|
---|
50 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
51 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
52 | ## that all version information is kept in one place.
|
---|
53 | #libMolecuilderTesselation_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
54 |
|
---|
55 | ## The generated configuration header is installed in its own subdirectory of
|
---|
56 | ## $(libdir). The reason for this is that the configuration information put
|
---|
57 | ## into this header file describes the target platform the installed library
|
---|
58 | ## has been built for. Thus the file must not be installed into a location
|
---|
59 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
60 | ## Hierarchy Standard (FHS).
|
---|
61 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
62 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
63 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
64 | ## configuration header file is generated at configure time and should not be
|
---|
65 | ## shipped with the source tarball.
|
---|
66 | #libMolecuilderTesselation_libincludedir = $(libdir)/MoleCuilder/include
|
---|
67 | #nodist_libMolecuilderTesselation_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
68 |
|
---|
69 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
70 | ## architecture-dependent package configuration information. Occasionally,
|
---|
71 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
72 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
73 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
74 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|