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