source: util/Makefile.am@ bd7b85

Last change on this file since bd7b85 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: 1.1 KB
Line 
1#ACLOCAL_AMFLAGS = -I m4
2SUBDIRS = doc
3
4bin_PROGRAMS = \
5 average \
6 CreateGaAs \
7 CreateH2 \
8 GetPdb \
9 NanoCreator \
10 ReadSrcIon \
11 stochastik \
12 VibrAlyzer
13
14GetPdb_SOURCES = GetPdb.c mergesort.c mergesort.h
15stochastik_SOURCES = stochastik.cpp
16NanoCreator_SOURCES = NanoCreator.c NanoCreator.h
17average_SOURCES = average.cpp
18VibrAlyzer_SOURCES = VibrAlyzer.c
19
20scripts = \
21 average_result.sh \
22 CreateFromXYZ.sh \
23 config2xyz.sh \
24 convert2old.sh \
25 convertpdb.sh \
26 dynamicANOVA.sh \
27 gather_result.sh \
28 gather_all_results.sh \
29 grep_shielding.sh \
30 gather_averaged_results.sh \
31 meas2pdb.sh \
32 Nanotubes.pl \
33 ReSequenceDX.pl \
34 test.sh
35
36bin_SCRIPTS = ${scripts}
37
38average_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
39CreateGaAs_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
40CreateH2_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
41GetPdb_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
42ReadSrcIon_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
43stochastik_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
44NanoCreator_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
45VibrAlyzer_CFLAGS = -march=nocona -Wall -DBIGENDIAN=0
46
Note: See TracBrowser for help on using the repository browser.