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