source: molecuilder/src/Makefile.am@ 212c827

Last change on this file since 212c827 was df55a0, checked in by Frederik Heber <heber@…>, 16 years ago

Added basic View functionality. - Added DisplayMenuItem to show certain types of Views - Added Views to make StringViews from methods producing strings and from methods taking streams Signed-off-by: Tillmann Crueger <crueger@…>

  • Property mode set to 100644
File size: 2.9 KB
Line 
1ATOMSOURCE = atom.cpp atom_atominfo.cpp atom_bondedparticle.cpp atom_bondedparticleinfo.cpp atom_graphnode.cpp atom_graphnodeinfo.cpp atom_particleinfo.cpp atom_trajectoryparticle.cpp atom_trajectoryparticleinfo.cpp
2ATOMHEADER = atom.hpp atom_atominfo.hpp atom_bondedparticle.hpp atom_bondedparticleinfo.hpp atom_graphnode.hpp atom_graphnodeinfo.hpp atom_particleinfo.hpp atom_trajectoryparticle.hpp atom_trajectoryparticleinfo.hpp
3
4ANALYSISSOURCE = analysis_bonds.cpp analysis_correlation.cpp
5ANALYSISHEADER = analysis_bonds.hpp analysis_correlation.hpp
6
7ACTIONSSOURCE = Actions/Action.cpp Actions/MethodAction.cpp
8ACTIONSHEADER = Actions/Action.hpp Actions/MethodAction.hpp
9
10VIEWSOURCE = Views/View.cpp Views/StringView.cpp Views/MethodStringView.cpp Views/StreamStringView.cpp
11VIEWHEADER = Views/View.hpp Views/StringView.hpp Views/MethodStringView.hpp Views/StreamStringView.hpp
12
13MENUSOURCE = ${ACTIONSSOURCE} ${VIEWSOURCE} Menu/Menu.cpp Menu/TextMenu.cpp Menu/MenuItem.cpp Menu/SubMenuItem.cpp Menu/ActionMenuItem.cpp Menu/SeperatorItem.cpp Menu/DisplayMenuItem.cpp
14MENUHEADER = ${ACTIONSHEADER} ${VIEWHEADER} Menu/Menu.hpp Menu/TextMenu.hpp Menu/MenuItem.hpp Menu/SubMenuItem.hpp Menu/ActionMenuItem.hpp Menu/SeperatorItem.hpp Menu/DisplayMenuItem.hpp
15
16SOURCE = ${ANALYSISSOURCE} ${ATOMSOURCE} ${MENUSOURCE} bond.cpp bondgraph.cpp boundary.cpp config.cpp element.cpp ellipsoid.cpp errorlogger.cpp graph.cpp helpers.cpp leastsquaremin.cpp linkedcell.cpp log.cpp logger.cpp memoryusageobserver.cpp moleculelist.cpp molecule.cpp molecule_dynamics.cpp molecule_fragmentation.cpp molecule_geometry.cpp molecule_graph.cpp molecule_pointcloud.cpp parser.cpp periodentafel.cpp tesselation.cpp tesselationhelpers.cpp vector.cpp verbose.cpp menu.cpp
17HEADER = ${ANALYSISHEADER} ${ATOMHEADER} ${MENUHEADER} bond.hpp bondgraph.hpp boundary.hpp config.hpp defs.hpp element.hpp ellipsoid.hpp errorlogger.hpp graph.hpp helpers.hpp leastsquaremin.hpp linkedcell.hpp lists.hpp log.hpp logger.hpp memoryallocator.hpp memoryusageobserver.hpp molecule.hpp molecule_template.hpp parser.hpp periodentafel.hpp stackclass.hpp tesselation.hpp tesselationhelpers.hpp vector.hpp verbose.hpp menu.hpp
18
19BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB)
20INCLUDES = -I$(top_srcdir)/src/unittests
21
22noinst_LIBRARIES = libmolecuilder.a
23bin_PROGRAMS = molecuilder joiner analyzer
24molecuilderdir = ${bindir}
25libmolecuilder_a_SOURCES = ${SOURCE} ${HEADER}
26molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
27molecuilder_LDFLAGS = $(BOOST_LIB)
28molecuilder_SOURCES = builder.cpp
29molecuilder_LDADD = libmolecuilder.a
30joiner_SOURCES = joiner.cpp datacreator.cpp parser.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp
31joiner_LDADD = libmolecuilder.a
32analyzer_SOURCES = analyzer.cpp datacreator.cpp parser.cpp helpers.hpp periodentafel.hpp parser.hpp datacreator.hpp
33analyzer_LDADD = libmolecuilder.a
34
35#EXTRA_DIST = ${molecuilder_DATA}
36
Note: See TracBrowser for help on using the repository browser.