| [7e3f11a] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | PYTHONSOURCE = \
 | 
|---|
| [cc6e5c] | 5 |         Python/exit.cpp \
 | 
|---|
 | 6 |         Python/getBoundingBox.cpp \
 | 
|---|
 | 7 |         Python/getDomainVolume.cpp \
 | 
|---|
| [5061d9] | 8 |         Python/getGraph6String.cpp \
 | 
|---|
| [ea30e6] | 9 |         Python/getSelectedAtomElements.cpp \
 | 
|---|
 | 10 |         Python/getSelectedAtomIds.cpp \
 | 
|---|
| [e70818] | 11 |         Python/getSelectedAtomPositions.cpp \
 | 
|---|
| [cc6e5c] | 12 |         Python/getSelectedMolarMass.cpp \
 | 
|---|
 | 13 |         Python/PythonScripting.cpp \
 | 
|---|
| [415ddd] | 14 |         Python/reinit.cpp \
 | 
|---|
 | 15 |         Python/wait.cpp
 | 
|---|
| [7e3f11a] | 16 |                                   
 | 
|---|
 | 17 | PYTHONHEADER = \
 | 
|---|
| [cc6e5c] | 18 |         Python/modules.hpp \
 | 
|---|
| [7e3f11a] | 19 |         Python/PythonScripting_impl.hpp \
 | 
|---|
 | 20 |         Python/PythonScripting.hpp
 | 
|---|
 | 21 | 
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | noinst_LTLIBRARIES += libMolecuilderPython.la
 | 
|---|
 | 24 | libMolecuilderPython_la_includedir = $(includedir)/MoleCuilder/
 | 
|---|
| [1ca493a] | 25 | libMolecuilderPython_la_CPPFLAGS = $(AM_CPPFLAGS) $(BOOST_PYTHON_CPPFLAGS)
 | 
|---|
| [7e3f11a] | 26 | libMolecuilderPython_la_LDFLAGS = $(AM_LDFLAGS) $(BOOST_PYTHON_LDFLAGS) 
 | 
|---|
 | 27 | libMolecuilderPython_la_LIBADD = \
 | 
|---|
 | 28 |         $(BOOST_PYTHON_LIBS) \
 | 
|---|
| [1ca493a] | 29 |         $(BOOST_PYTHON_LIB) \
 | 
|---|
 | 30 |         ${CodePatterns_LIBS}
 | 
|---|
| [7e3f11a] | 31 | 
 | 
|---|
 | 32 | nobase_libMolecuilderPython_la_include_HEADERS = ${PYTHONHEADER}
 | 
|---|
 | 33 | 
 | 
|---|
 | 34 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
 | 
|---|
 | 35 | ## target.  Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
 | 
|---|
 | 36 | ## will therefore be treated as if it were literally part of the target name,
 | 
|---|
 | 37 | ## and the variable name derived from that.
 | 
|---|
 | 38 | ## The file extension .cc is recognized by Automake, and makes it produce
 | 
|---|
 | 39 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
 | 
|---|
 | 40 | ## from each source file.  Note that it is not necessary to list header files
 | 
|---|
 | 41 | ## which are already listed elsewhere in a _HEADERS variable assignment.
 | 
|---|
 | 42 | libMolecuilderPython_la_SOURCES = ${PYTHONSOURCE}
 | 
|---|
 | 43 | 
 | 
|---|
 | 44 | ## Instruct libtool to include ABI version information in the generated shared
 | 
|---|
 | 45 | ## library file (.so).  The library ABI version is defined in configure.ac, so
 | 
|---|
 | 46 | ## that all version information is kept in one place.
 | 
|---|
 | 47 | #libMolecuilderPython_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
 | 
|---|
 | 48 | 
 | 
|---|
 | 49 | ## The generated configuration header is installed in its own subdirectory of
 | 
|---|
 | 50 | ## $(libdir).  The reason for this is that the configuration information put
 | 
|---|
 | 51 | ## into this header file describes the target platform the installed library
 | 
|---|
 | 52 | ## has been built for.  Thus the file must not be installed into a location
 | 
|---|
 | 53 | ## intended for architecture-independent files, as defined by the Filesystem
 | 
|---|
 | 54 | ## Hierarchy Standard (FHS).
 | 
|---|
 | 55 | ## The nodist_ prefix instructs Automake to not generate rules for including
 | 
|---|
 | 56 | ## the listed files in the distribution on 'make dist'.  Files that are listed
 | 
|---|
 | 57 | ## in _HEADERS variables are normally included in the distribution, but the
 | 
|---|
 | 58 | ## configuration header file is generated at configure time and should not be
 | 
|---|
 | 59 | ## shipped with the source tarball.
 | 
|---|
 | 60 | #libMolecuilderPython_libincludedir = $(libdir)/MoleCuilder/include
 | 
|---|
 | 61 | #nodist_libMolecuilderPython_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
 | 
|---|
 | 62 | 
 | 
|---|
 | 63 | ## Install the generated pkg-config file (.pc) into the expected location for
 | 
|---|
 | 64 | ## architecture-dependent package configuration information.  Occasionally,
 | 
|---|
 | 65 | ## pkg-config files are also used for architecture-independent data packages,
 | 
|---|
 | 66 | ## in which case the correct install location would be $(datadir)/pkgconfig.
 | 
|---|
 | 67 | #pkgconfigdir = $(libdir)/pkgconfig
 | 
|---|
 | 68 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
 | 
|---|