# 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} PATTERNSOURCE = PATTERNDEBUGSOURCE = PATTERNHEADER = \ $(top_srcdir)/src/CodePatterns/AtomicInstance.hpp \ $(top_srcdir)/src/CodePatterns/AtomicInstance_impl.hpp \ $(top_srcdir)/src/CodePatterns/Cacheable.hpp \ $(top_srcdir)/src/CodePatterns/Clone.hpp \ $(top_srcdir)/src/CodePatterns/Creator.hpp \ $(top_srcdir)/src/CodePatterns/Factory.hpp \ $(top_srcdir)/src/CodePatterns/Factory_impl.hpp \ $(top_srcdir)/src/CodePatterns/FactoryTypeList.hpp \ $(top_srcdir)/src/CodePatterns/ManipulableClone.hpp \ $(top_srcdir)/src/CodePatterns/ManipulablePrototypeFactory.hpp \ $(top_srcdir)/src/CodePatterns/ManipulablePrototypeFactory_impl.hpp \ $(top_srcdir)/src/CodePatterns/ObservedValue.hpp \ $(top_srcdir)/src/CodePatterns/PrototypeFactory.hpp \ $(top_srcdir)/src/CodePatterns/PrototypeFactory_impl.hpp \ $(top_srcdir)/src/CodePatterns/Registry.hpp \ $(top_srcdir)/src/CodePatterns/Registry_impl.hpp \ $(top_srcdir)/src/CodePatterns/Singleton.hpp \ $(top_srcdir)/src/CodePatterns/Singleton_impl.hpp PATTERNDEBUGHEADER = noinst_LTLIBRARIES = libcodepatterns-Patterns.la libcodepatterns-Patterns-debug.la libcodepatterns_Patterns_la_includedir = $(includedir)/CodePatterns/ libcodepatterns_Patterns_debug_la_includedir = $(includedir)/CodePatterns/ libcodepatterns_Patterns_la_LDFLAGS = \ $(AM_LDFLAGS) \ $(BOOST_THREAD_LDFLAGS) \ $(BOOST_THREAD_LIBS) libcodepatterns_Patterns_la_LIBADD = libcodepatterns_Patterns_debug_la_LDFLAGS = \ $(AM_LDFLAGS) \ $(BOOST_THREAD_LDFLAGS) \ $(BOOST_THREAD_LIBS) libcodepatterns_Patterns_debug_la_LIBADD = libcodepatterns_Patterns_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS) libcodepatterns_Patterns_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS) libcodepatterns_Patterns_la_include_HEADERS = $(PATTERNHEADER) libcodepatterns_Patterns_debug_la_include_HEADERS = $(PATTERNDEBUGHEADER) ## 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_Patterns_la_SOURCES = $(PATTERNSOURCE) libcodepatterns_Patterns_debug_la_SOURCES = $(PATTERNDEBUGSOURCE) #Observer/all.hpp: FORCE # @if (test -d $(top_srcdir)/Patterns/Observer); then \ # cd $(top_srcdir)/Patterns; \ # cat >$@ < $(top_srcdir)/Patterns/Observer/all.hpp; \ # for includefile in Observer/*.hpp; do \ # echo "#include \"${includefile}\"" >>$@; \ # done; \ # echo "#endif /* OBSERVER_ALL_HPP_ */" >>$@; \ # fi