# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab AM_LDFLAGS = -ldl AM_CPPFLAGS = -I$(top_srcdir)/src/ $(BOOST_CPPFLAGS) HELPERSOURCE = \ Assert.cpp \ Chronos.cpp \ errorlogger.cpp \ Info.cpp \ Log.cpp \ logger.cpp \ MemDebug.cpp \ Verbose.cpp HELPERDEBUGSOURCE = \ $(HELPERSOURCE) HELPERHEADER = \ $(top_srcdir)/src/CodePatterns/Assert.hpp \ $(top_srcdir)/src/CodePatterns/Chronos.hpp \ $(top_srcdir)/src/CodePatterns/enumeration.hpp \ $(top_srcdir)/src/CodePatterns/errorlogger.hpp \ $(top_srcdir)/src/CodePatterns/Info.hpp \ $(top_srcdir)/src/CodePatterns/IteratorAdaptors.hpp \ $(top_srcdir)/src/CodePatterns/Log.hpp \ $(top_srcdir)/src/CodePatterns/logger.hpp \ $(top_srcdir)/src/CodePatterns/MemDebug.hpp \ $(top_srcdir)/src/CodePatterns/Range.hpp \ $(top_srcdir)/src/CodePatterns/toString.hpp \ $(top_srcdir)/src/CodePatterns/Verbose.hpp HELPERDEBUGHEADER = noinst_LTLIBRARIES = libcodepatterns-Helpers.la libcodepatterns-Helpers-debug.la libcodepatterns_Helpers_la_includedir = $(includedir)/CodePatterns/ libcodepatterns_Helpers_debug_la_includedir = $(includedir)/CodePatterns/ libcodepatterns_Helpers_la_LDFLAGS = \ $(AM_LDFLAGS) \ $(BOOST_THREAD_LDFLAGS) \ $(LIBRT) \ $(BOOST_THREAD_LIBS) libcodepatterns_Helpers_debug_la_LDFLAGS = \ $(AM_LDFLAGS) \ $(BOOST_THREAD_LDFLAGS) \ $(LIBRT) \ $(BOOST_THREAD_LIBS) libcodepatterns_Helpers_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS) libcodepatterns_Helpers_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_HELPER $(AM_CPPFLAGS) libcodepatterns_Helpers_la_include_HEADERS = $(HELPERHEADER) libcodepatterns_Helpers_debug_la_include_HEADERS = $(HELPERDEBUGHEADER) ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and ## will therefore be treated as if it were literally part of the target name, ## and the variable name derived from that. ## The file extension .cc is recognized by Automake, and makes it produce ## rules which invoke the C++ compiler to produce a libtool object file (.lo) ## from each source file. Note that it is not necessary to list header files ## which are already listed elsewhere in a _HEADERS variable assignment. libcodepatterns_Helpers_la_SOURCES = $(HELPERSOURCE) libcodepatterns_Helpers_debug_la_SOURCES = $(HELPERDEBUGSOURCE)