[ffe057] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONAUTOMATIONSOURCE = \
|
---|
[184615] | 5 | Fragmentation/Automation/createMatrixNrLookup.cpp \
|
---|
[27594e] | 6 | Fragmentation/Automation/FragmentationChargeDensity.cpp \
|
---|
[376a3b] | 7 | Fragmentation/Automation/FragmentationResults.cpp \
|
---|
[ffe057] | 8 | Fragmentation/Automation/MPQCFragmentController.cpp \
|
---|
| 9 | Fragmentation/Automation/SpecificFragmentController.cpp
|
---|
| 10 |
|
---|
| 11 | if CONDVMG
|
---|
| 12 | FRAGMENTATIONAUTOMATIONSOURCE += \
|
---|
[238868] | 13 | Fragmentation/Automation/VMGDebugGridFragmentController.cpp \
|
---|
[ffe057] | 14 | Fragmentation/Automation/VMGFragmentController.cpp
|
---|
| 15 | endif
|
---|
| 16 |
|
---|
| 17 | FRAGMENTATIONAUTOMATIONHEADER = \
|
---|
[184615] | 18 | Fragmentation/Automation/createMatrixNrLookup.hpp \
|
---|
[447481] | 19 | Fragmentation/Automation/extractJobIds.hpp \
|
---|
[27594e] | 20 | Fragmentation/Automation/FragmentationChargeDensity.hpp \
|
---|
[376a3b] | 21 | Fragmentation/Automation/FragmentationResults.hpp \
|
---|
[ffe057] | 22 | Fragmentation/Automation/MPQCFragmentController.hpp \
|
---|
| 23 | Fragmentation/Automation/SpecificFragmentController.hpp \
|
---|
| 24 | Fragmentation/Automation/SpecificFragmentController_impl.hpp
|
---|
| 25 |
|
---|
| 26 | if CONDVMG
|
---|
| 27 | FRAGMENTATIONAUTOMATIONHEADER += \
|
---|
[238868] | 28 | Fragmentation/Automation/VMGDebugGridFragmentController.hpp \
|
---|
[ffe057] | 29 | Fragmentation/Automation/VMGFragmentController.hpp
|
---|
| 30 | endif
|
---|
| 31 |
|
---|
| 32 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
|
---|
| 33 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
| 34 | libMolecuilderFragmentationAutomation_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS)
|
---|
| 35 | libMolecuilderFragmentationAutomation_la_LDFLAGS = -ldl ${BOOST_LDFLAGS}
|
---|
| 36 | libMolecuilderFragmentationAutomation_la_LIBADD = \
|
---|
| 37 | ${CodePatterns_LIBS}
|
---|
| 38 |
|
---|
| 39 |
|
---|
| 40 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = ${FRAGMENTATIONAUTOMATIONHEADER}
|
---|
| 41 |
|
---|
| 42 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
| 43 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
| 44 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 45 | ## and the variable name derived from that.
|
---|
| 46 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 47 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 48 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 49 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
| 50 | libMolecuilderFragmentationAutomation_la_SOURCES = ${FRAGMENTATIONAUTOMATIONSOURCE}
|
---|
| 51 |
|
---|
| 52 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 53 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 54 | ## that all version information is kept in one place.
|
---|
| 55 | #libMolecuilderFragmentationAutomation_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
| 56 |
|
---|
| 57 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 58 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 59 | ## into this header file describes the target platform the installed library
|
---|
| 60 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 61 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 62 | ## Hierarchy Standard (FHS).
|
---|
| 63 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 64 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 65 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 66 | ## configuration header file is generated at configure time and should not be
|
---|
| 67 | ## shipped with the source tarball.
|
---|
| 68 | #libMolecuilderFragmentationAutomation_libincludedir = $(libdir)/MoleCuilder/include
|
---|
| 69 | #nodist_libMolecuilderFragmentationAutomation_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
| 70 |
|
---|
| 71 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
| 72 | ## architecture-dependent package configuration information. Occasionally,
|
---|
| 73 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
| 74 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
| 75 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
| 76 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|