source: ThirdParty/CodePatterns/src/Observer/Makefile.am@ 9eb71b3

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes
Last change on this file since 9eb71b3 was 41e8e2, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '084729c5923f0123e695fbe2548b393288c1f13d' as 'ThirdParty/CodePatterns'

  • Property mode set to 100755
File size: 2.8 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
5AM_LDFLAGS = -ldl
6AM_CPPFLAGS = -I$(top_srcdir)/src/ $(BOOST_CPPFLAGS)
7
8OBSERVERSOURCE = \
9 Channels.cpp \
10 GlobalObservableInfo.cpp \
11 Graveyard.cpp \
12 Notification.cpp \
13 Observable.cpp \
14 Observer.cpp \
15 Relay.cpp
16
17OBSERVERDEBUGSOURCE = \
18 $(OBSERVERSOURCE) \
19 ObserverLog.cpp
20
21OBSERVERHEADER = \
22 $(top_srcdir)/src/CodePatterns/Observer/all.hpp \
23 $(top_srcdir)/src/CodePatterns/Observer/Channels.hpp \
24 $(top_srcdir)/src/CodePatterns/Observer/defs.hpp \
25 $(top_srcdir)/src/CodePatterns/Observer/GlobalObservableInfo.hpp \
26 $(top_srcdir)/src/CodePatterns/Observer/Graveyard.hpp \
27 $(top_srcdir)/src/CodePatterns/Observer/Notification.hpp \
28 $(top_srcdir)/src/CodePatterns/Observer/Observable.hpp \
29 $(top_srcdir)/src/CodePatterns/Observer/Observer.hpp \
30 $(top_srcdir)/src/CodePatterns/Observer/ObservedContainer.hpp \
31 $(top_srcdir)/src/CodePatterns/Observer/ObserverLog.hpp \
32 $(top_srcdir)/src/CodePatterns/Observer/ObservedIterator.hpp \
33 $(top_srcdir)/src/CodePatterns/Observer/ObservedContainer_impl.hpp \
34 $(top_srcdir)/src/CodePatterns/Observer/UnobservedIterator.hpp \
35 $(top_srcdir)/src/CodePatterns/Observer/Relay.hpp \
36 $(top_srcdir)/src/CodePatterns/Observer/Zombie.hpp
37
38OBSERVERDEBUGHEADER =
39
40noinst_LTLIBRARIES = libcodepatterns-Observer.la libcodepatterns-Observer-debug.la
41libcodepatterns_Observer_la_includedir = $(includedir)/CodePatterns/Observer/
42libcodepatterns_Observer_debug_la_includedir = $(includedir)/CodePatterns/Observer/
43
44libcodepatterns_Observer_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
45libcodepatterns_Observer_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
46
47libcodepatterns_Observer_la_include_HEADERS = $(OBSERVERHEADER)
48libcodepatterns_Observer_debug_la_include_HEADERS = $(OBSERVERDEBUGHEADER)
49
50## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
51## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
52## will therefore be treated as if it were literally part of the target name,
53## and the variable name derived from that.
54## The file extension .cc is recognized by Automake, and makes it produce
55## rules which invoke the C++ compiler to produce a libtool object file (.lo)
56## from each source file. Note that it is not necessary to list header files
57## which are already listed elsewhere in a _HEADERS variable assignment.
58libcodepatterns_Observer_la_SOURCES = $(OBSERVERSOURCE)
59libcodepatterns_Observer_debug_la_SOURCES = $(OBSERVERDEBUGSOURCE)
60
61#Observer/all.hpp: FORCE
62# @if (test -d $(top_srcdir)/Patterns/Observer); then \
63# cd $(top_srcdir)/Patterns; \
64# cat >$@ < $(top_srcdir)/Patterns/Observer/all.hpp; \
65# for includefile in Observer/*.hpp; do \
66# echo "#include \"${includefile}\"" >>$@; \
67# done; \
68# echo "#endif /* OBSERVER_ALL_HPP_ */" >>$@; \
69# fi
70
Note: See TracBrowser for help on using the repository browser.