source: molecuilder/src/Makefile.am@ 417bb5

Last change on this file since 417bb5 was da83f8, checked in by Frederik Heber <heber@…>, 17 years ago

added --enable-optimization, thrown -g -O specifics out of Makefile.am's

--enable-optimization is added to each configure.ac and is linked with --enable-debug (no debug and optimization at the same time, debug is normally off and -O2 on), implemented via C(XX)FLAGS
Henceforth, -g, -O and -cc=... specifics are thrown out of the Makefile.am's, so that the optimiziation and debugging is streamlined throughout the whole package

  • Property mode set to 100644
File size: 796 bytes
Line 
1SOURCE = atom.cpp bond.cpp builder.cpp config.cpp element.cpp helpers.cpp molecules.cpp moleculelist.cpp periodentafel.cpp vector.cpp verbose.cpp
2HEADER = defs.hpp helpers.hpp molecules.hpp
3
4bin_PROGRAMS = molecuilder joiner analyzer
5molecuilderdir = ${bindir}
6molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
7molecuilder_SOURCES = ${SOURCE} ${HEADER}
8joiner_SOURCES = joiner.cpp parser.cpp helpers.cpp verbose.cpp helpers.hpp parser.hpp
9analyzer_SOURCES = analyzer.cpp parser.cpp datacreator.cpp helpers.cpp verbose.cpp helpers.hpp parser.hpp datacreator.hpp
10molecuilder_CXXFLAGS = -march=nocona -Wall -DBIGENDIAN=0
11joiner_CXXFLAGS = -march=nocona -Wall -DBIGENDIAN=0
12analyzer_CXXFLAGS = -march=nocona -Wall -DBIGENDIAN=0
13
14#EXTRA_DIST = ${molecuilder_DATA}
Note: See TracBrowser for help on using the repository browser.