1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | FILLINGSOURCE = \
|
---|
5 | Filling/Cluster.cpp \
|
---|
6 | Filling/ClusterInterface.cpp \
|
---|
7 | Filling/Mesh/CubeMesh.cpp \
|
---|
8 | Filling/Mesh/Mesh.cpp \
|
---|
9 | Filling/Filler.cpp \
|
---|
10 | Filling/Generators/NodeGenerator.cpp \
|
---|
11 | Filling/Inserter/Inserter.cpp \
|
---|
12 | Filling/Inserter/RandomInserter.cpp \
|
---|
13 | Filling/Inserter/SimpleInserter.cpp \
|
---|
14 | Filling/Inserter/SurfaceInserter.cpp \
|
---|
15 | Filling/Inserter/SurfaceRandomInserter.cpp \
|
---|
16 | Filling/Predicates/AnyFillPredicate.cpp \
|
---|
17 | Filling/Predicates/FillPredicate.cpp \
|
---|
18 | Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.cpp \
|
---|
19 | Filling/Predicates/IsInsideDomain_FillPredicate.cpp \
|
---|
20 | Filling/Predicates/IsInsideSurface_FillPredicate.cpp \
|
---|
21 | Filling/Predicates/IsValidInDomain_FillPredicate.cpp \
|
---|
22 | Filling/Predicates/IsVoidNode_FillPredicate.cpp \
|
---|
23 | Filling/Predicates/Ops_FillPredicate.cpp \
|
---|
24 | Filling/Preparators/BaseFillerPreparator.cpp \
|
---|
25 | Filling/Preparators/BoxFillerPreparator.cpp \
|
---|
26 | Filling/Preparators/ShapeSurfaceFillerPreparator.cpp \
|
---|
27 | Filling/Preparators/ShapeVolumeFillerPreparator.cpp
|
---|
28 |
|
---|
29 | FILLINGHEADER = \
|
---|
30 | Filling/Cluster.hpp \
|
---|
31 | Filling/ClusterInterface.hpp \
|
---|
32 | Filling/Mesh/CubeMesh.hpp \
|
---|
33 | Filling/Mesh/Mesh.hpp \
|
---|
34 | Filling/Mesh/MeshAdaptor.hpp \
|
---|
35 | Filling/Filler.hpp \
|
---|
36 | Filling/Generators/NodeGenerator.hpp \
|
---|
37 | Filling/Inserter/Inserter.hpp \
|
---|
38 | Filling/Inserter/InserterBase.hpp \
|
---|
39 | Filling/Inserter/RandomInserter.hpp \
|
---|
40 | Filling/Inserter/SimpleInserter.hpp \
|
---|
41 | Filling/Inserter/SurfaceInserter.hpp \
|
---|
42 | Filling/Inserter/SurfaceRandomInserter.hpp \
|
---|
43 | Filling/NodeTypes.hpp \
|
---|
44 | Filling/Predicates/AnyFillPredicate.hpp \
|
---|
45 | Filling/Predicates/FillPredicate.hpp \
|
---|
46 | Filling/Predicates/FillPredicateBase.hpp \
|
---|
47 | Filling/Predicates/FillPredicate_impl.hpp \
|
---|
48 | Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.hpp \
|
---|
49 | Filling/Predicates/IsInsideDomain_FillPredicate.hpp \
|
---|
50 | Filling/Predicates/IsInsideSurface_FillPredicate.hpp \
|
---|
51 | Filling/Predicates/IsValidInDomain_FillPredicate.hpp \
|
---|
52 | Filling/Predicates/IsVoidNode_FillPredicate.hpp \
|
---|
53 | Filling/Predicates/Ops_FillPredicate.hpp \
|
---|
54 | Filling/Predicates/Ops_FillPredicate_impl.hpp \
|
---|
55 | Filling/Preparators/BaseFillerPreparator.hpp \
|
---|
56 | Filling/Preparators/BoxFillerPreparator.hpp \
|
---|
57 | Filling/Preparators/ShapeSurfaceFillerPreparator.hpp \
|
---|
58 | Filling/Preparators/ShapeVolumeFillerPreparator.hpp
|
---|
59 |
|
---|
60 | noinst_LTLIBRARIES += libMolecuilderFilling.la
|
---|
61 | libMolecuilderFilling_la_includedir = $(includedir)/MoleCuilder/
|
---|
62 |
|
---|
63 | nobase_libMolecuilderFilling_la_include_HEADERS = ${FILLINGHEADER}
|
---|
64 |
|
---|
65 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
66 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
67 | ## will therefore be treated as if it were literally part of the target name,
|
---|
68 | ## and the variable name derived from that.
|
---|
69 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
70 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
71 | ## from each source file. Note that it is not necessary to list header files
|
---|
72 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
73 | libMolecuilderFilling_la_SOURCES = ${FILLINGSOURCE}
|
---|
74 |
|
---|
75 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
76 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
77 | ## that all version information is kept in one place.
|
---|
78 | #libMolecuilderFilling_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
79 |
|
---|
80 | ## The generated configuration header is installed in its own subdirectory of
|
---|
81 | ## $(libdir). The reason for this is that the configuration information put
|
---|
82 | ## into this header file describes the target platform the installed library
|
---|
83 | ## has been built for. Thus the file must not be installed into a location
|
---|
84 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
85 | ## Hierarchy Standard (FHS).
|
---|
86 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
87 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
88 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
89 | ## configuration header file is generated at configure time and should not be
|
---|
90 | ## shipped with the source tarball.
|
---|
91 | #libMolecuilderFilling_libincludedir = $(libdir)/MoleCuilder/include
|
---|
92 | #nodist_libMolecuilderFilling_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
93 |
|
---|
94 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
95 | ## architecture-dependent package configuration information. Occasionally,
|
---|
96 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
97 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
98 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
99 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|