-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.in
643 lines (572 loc) · 16.9 KB
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
AC_REVISION([$Id: configure.in,v 1.44 1999/07/14 13:28:37 crawdad Exp $])
AC_INIT(aclocal.m4)
# Make srcdir an absolute path
srcdir=`(cd $srcdir; pwd)`
# Set up the default paths.
AC_PREFIX_DEFAULT(/usr/local/psi)
# exec_prefix is annoyingly preset to NONE by autoconf 2.x
test "$exec_prefix" = "NONE" && exec_prefix='$(prefix)/$(target)'
test -z "$bindir" && bindir='$(exec_prefix)/bin'
test -z "$libdir" && libdir='$(exec_prefix)/lib'
test -z "$mandir" && mandir='$(prefix)/man'
test -z "$datadir" && datadir='$(prefix)/lib'
test -z "$incdir" && incdir='$(prefix)/include'
# To make a "make all" at the top level work before the utilities
# and include files are installed, the include files
# will be put into an objincdir and the utilities will be accessed
# from src/util in the object directory.
top_objdir=`pwd`
objincdir=$top_objdir/include
AC_SUBST(objincdir)
AC_SUBST(bindir)
AC_SUBST(libdir)
AC_SUBST(mandir)
AC_SUBST(datadir)
AC_SUBST(incdir)
AC_SUBST(top_objdir)
changequote(,)
# If target wasn't given, then examine the current host and try
# to make it the target.
if [ -z "$target" ] || [ "$target" = NONE ]; then
target=`$srcdir/host.sh`
fi
# Convert target into a arch, vendor, and os.
arch=`echo $target | sed 's/\([^-]*\)-\([^-]*\)-\([^-]*\)-*.*/\1/'`
vendor=`echo $target | sed 's/\([^-]*\)-\([^-]*\)-\([^-]*\)-*.*/\2/'`
os=`echo $target | sed 's/\([^-]*\)-\([^-]*\)-\([^-]*\)-*.*/\3/'`
if [ "$arch" = NONE ]; then arch=''; fi
# If anything is missing, then fill it in with unknown.
if [ -z "$arch" ]; then arch=unknown; fi
if [ -z "$vendor" ]; then vendor=unknown; fi
if [ -z "$os" ]; then os=unknown; fi
changequote([,])
target=$arch-$vendor-$os
echo using machine type $target
AC_SUBST(target)
# potential names of compilers
FC_LIST="g77 f77 fc"
CC_LIST="gcc cc"
# set up os specific options
case $os in
aix*)
FC_LIST="xlf $FC_LIST"
CC_LIST="cc gcc"
;;
esac
AC_ARG_WITH(cc,--with-cc which cc command to use,[
case $withval in
yes)
CC='cc'
;;
no)
CC=''
;;
*)
CC=$withval
;;
esac
])
AC_ARG_WITH(fc,--with-fc which fortran compiler to use,[
case $withval in
yes)
FC='fc'
;;
no)
FC=''
;;
*)
FC=$withval
;;
esac
])
# Find out which compilers are available.
if test -z "$FC"; then
AC_PROGRAMS_CHECK(FC,$FC_LIST,f77)
fi
if test -z "$CC"; then
AC_PROGRAMS_CHECK(CC,$CC_LIST,cc)
fi
# Get info on the utility programs.
AC_PROG_CPP()
AC_PROG_YACC()
AC_PROG_RANLIB()
AC_PROG_INSTALL()
INSTALL_INCLUDE='$(top_srcdir)/installinc.sh' AC_SUBST(INSTALL_INCLUDE)
MKDIRS='$(top_srcdir)/mkdirs.sh' AC_SUBST(MKDIRS)
AC_PROG_LEX()
# If we got flex but didn't get LEXLIB try to find LEXLIB
case "$LEX" in
flex*)
if test -z "$LEXLIB"; then
AC_PROGRAM_PATH(FLEXPATH,flex)
FLEXLIBPATH=`echo $FLEXPATH|sed "s bin/flex.* lib/libfl.a "`
if test -n "$FLEXLIBPATH" && test -f "$FLEXLIBPATH"; then
LEXLIB=$FLEXLIBPATH
test -n "$verbose" && echo "setting LEXLIB to $LEXLIB"
fi
fi
;;
*)
;;
esac
AC_SET_MAKE
TMPL=$top_objdir/src/util/tmpl/tmpl AC_SUBST(TMPL)
PSIPP=$top_objdir/src/util/psipp/psipp AC_SUBST(PSIPP)
# Figure out the suffix used for fortran for files (as $(FC) needs
# them--not F since that is psipp's input suffix).
test -z "$F77SUF" && F77SUF=f AC_SUBST(F77SUF)
# Figure out the library suffix.
test -z "$LIBSUF" && LIBSUF=a AC_SUBST(LIBSUF)
# Figure out the object file suffix.
test -z "$OBJSUF" && OBJSUF=o AC_SUBST(OBJSUF)
# See if the C compiler can do dependency checking.
AC_CC_PROCESS_CHECK(C dependency processing,[
#include "nosuchincludefile.h"
],-M,CCDEPEND='$(CC) -M'; DODEPEND=yes,CCDEPEND=":"; DODEPEND=no)
AC_SUBST(CCDEPEND)
AC_SUBST(DODEPEND)
AC_MSG_RESULT(CCDEPEND is $CCDEPEND)
AC_MSG_RESULT(DODEPEND is $DODEPEND)
# find the c libraries
AC_CHECK_LIB(m,exit,CLIBS="$CLIBS -lm")
AC_CHECK_LIB(bsd,exit,CLIBS="$CLIBS -lbsd")
AC_MSG_RESULT(c libs: $CLIBS)
AC_SUBST(CLIBS)
# find the f77 libraries
AC_HAVE_FC_LIBRARY(-lblas,FLIBS="$FLIBS -lblas")
AC_HAVE_FC_LIBRARY(-lm,FLIBS="$FLIBS -lm")
AC_HAVE_FC_LIBRARY(-lbsd,FLIBS="$FLIBS -lbsd")
AC_MSG_RESULT(fortran libs: $FLIBS)
AC_SUBST(FLIBS)
############################################################################
# Set up compiler flags:
#
# FDBG Fortran debug flags.
# FOPT Fortran opt flags.
# FDEF Fortran defines (for psipp).
# FINC Fortran include directories (for psipp).
# FOTH Other fortran flags.
# CDBG C debug flags.
# COPT C opt flags.
# CDEF C defines.
# COTH Other C flags.
# CINC C include directories (with -I in front).
FDBG='-g' AC_SUBST(FDBG)
FOPT='-O' AC_SUBST(FOPT)
FDEF='' AC_SUBST(FDEF)
FOTH='' AC_SUBST(FOTH)
FSTATIC='' AC_SUBST(FSTATIC)
FINC='-I. -I$(objincdir) -I$(incdir)' AC_SUBST(FINC)
CDBG='-g' AC_SUBST(CDBG)
COPT='-O' AC_SUBST(COPT)
CDEF='' AC_SUBST(CDEF)
COTH='' AC_SUBST(COTH)
CINC='-I. -I$(objincdir) -I$(incdir)' AC_SUBST(CINC)
#check for const
AC_C_CONST()
# check for header files
AC_HAVE_HEADERS(errno.h fcntl.h unistd.h sys/types.h sys/times.h sys/param.h)
#check to see if void* is allowed
AC_MSG_CHECKING(for void pointers)
psi_ac_voidptr=yes
AC_TRY_COMPILE(,[
;}
void *func(void*ptr) { return ptr;
],,psi_ac_voidptr=no)
AC_MSG_RESULT($psi_ac_voidptr)
if test $psi_ac_voidptr = "no"; then
CDEF="$CDEF -DNO_VOID_PTR"
fi
#check for perror
AC_MSG_CHECKING(for perror)
psi_ac_perror=yes
AC_TRY_LINK([
#include<errno.h>
],[
perror("error");
],,psi_ac_perror=no)
AC_MSG_RESULT($psi_ac_perror)
if test $psi_ac_perror = "no"; then
CDEF="$CDEF -DNO_PERROR"
fi
#check for strstr
AC_MSG_CHECKING(for strstr)
psi_ac_strstr=yes
AC_TRY_LINK([
#include<string.h>
],[
char *a,*b;
strstr(a,b);
],,psi_ac_strstr=no)
AC_MSG_RESULT($psi_ac_strstr)
if test $psi_ac_strstr = "no"; then
CDEF="$CDEF -DNO_STRSTR"
fi
# check for integer bitwise intrinsics. at one time it was
# hip to use ior, ishft, etc. these days it seems that or and rshift, etc
# are in vogue
AC_FC_COMPILE_CHECK(fortran iand,[
I = IAND(1,1)
],,FDEF="$FDEF -DHAS_IAND",)
AC_FC_COMPILE_CHECK(fortran ior,[
I = IOR(1,1)
],,FDEF="$FDEF -DHAS_IOR")
AC_FC_COMPILE_CHECK(fortran ieor,[
I = IEOR(1,1)
],,FDEF="$FDEF -DHAS_IEOR")
AC_FC_COMPILE_CHECK(fortran ishft,[
I = ISHFT(1,1)
],,FDEF="$FDEF -DHAS_ISHFT",)
AC_FC_COMPILE_CHECK(fortran rshft,[
I = RSHFT(1,1)
],,FDEF="$FDEF -DHAS_RSHFT",)
AC_FC_COMPILE_CHECK(fortran lshft,[
I = LSHFT(1,1)
],,FDEF="$FDEF -DHAS_LSHFT",)
# See if the fortran 'flush' routine exists.
# If not, define NO_FLUSH_ROUTINE in FDEFS.
AC_FC_COMPILE_CHECK(fortran flush,[
CALL FLUSH(6)
],,,FDEF="$FDEF -DNO_FLUSH_ROUTINE")
# See if the fortran 'exit' routine exists.
# If not, define NO_EXIT_ROUTINE in FDEFS.
AC_FC_COMPILE_CHECK(fortran exit,[
CALL EXIT(0)
],,,FDEF="$FDEF -DNO_EXIT_ROUTINE")
# See if the fortran compiler takes 'implicit undefined'.
# If so define UNDEFINED in FDEFS.
AC_FC_COMPILE_CHECK(implicit undefined,[
IMPLICIT UNDEFINED(A-Z)
],,FDEF="$FDEF -DUNDEFINED")
# See if the fortran compiler takes accepts 'APPEND' as a file status in open
# If so define APPEND_OK in FDEFS.
AC_FC_COMPILE_CHECK(append,[
OPEN(1,FILE='foo',STATUS='APPEND')
],,FDEF="$FDEF -DAPPEND_OK")
# See if ieee_init() exists.
# If so define HAS_IEEE in FDEFS.
AC_FC_COMPILE_CHECK(ieee,[
CALL IEEE_INIT()
CALL IEEE_DONE()
],,FDEF="$FDEF -DHAS_IEEE")
# Find out how to turn off automatic variables
# HP specific option to turn off automatic variables
if test "$vendor" = hp && test "$FC" = f77 ; then
FSTATIC=-K
fi
# try -fno-automatic option to turn off automatic variables (GNU F77)
if test -z "$FSTATIC"; then
AC_FC_COMPILE_CHECK(-fno-automatic,,-fno-automatic,
FSTATIC="-fno-automatic";
AC_MSG_RESULT(using -fno-automatic))
fi
# as a last resort try -static (hopefully this doesn't just link
# libraries statically)
if test -z "$FSTATIC"; then
AC_FC_COMPILE_CHECK(-static,,-static,
FSTATIC="$FSTATIC -static"; AC_MSG_RESULT(using -static))
fi
# check for an option that zeros local variables (GNU F77)
AC_FC_COMPILE_CHECK(-finit-local-zero,,-finit-local-zero,
FSTATIC="$FSTATIC -finit-local-zero";
AC_MSG_RESULT(using -finit-local-zero))
# check to see what main is called, as well as how to call fortran from
# C and vice versa
AC_FC_LINKAGE_CHECK(main routine,)
# now determine sizes of some basic types
AC_C_SIZES_CHECK(sizeof basic types)
if test "$ac_sizeof_int" = "$ac_sizeof_integer" ; then
INT_TYPE=int
elif test "$ac_sizeof_long" = "$ac_sizeof_integer" ; then
INT_TYPE=long
elif test "$ac_sizeof_long_long" = "$ac_sizeof_integer" ; then
INT_TYPE="long long"
else
echo "cannot determine INT_TYPE"
fi
AC_SUBST(INT_TYPE)
if test "$ac_sizeof_double" = "$ac_sizeof_real" ; then
REAL_TYPE=double
elif test "$ac_sizeof_long_double" = "$ac_sizeof_real" ; then
REAL_TYPE="long double"
else
echo "cannot determine REAL_TYPE"
fi
AC_SUBST(REAL_TYPE)
REAL_SIZE=$ac_sizeof_real
AC_SUBST(REAL_SIZE)
INT_SIZE=$ac_sizeof_integer
AC_SUBST(INT_SIZE)
if test "$ac_sizeof_real" != "$ac_sizeof_dprec" ; then
echo "WARNING! PSI probably won't work if double precision is not the"
echo " same size as real*8"
echo " try setting FOTH environment variable"
fi
# I'm not keeping this for now due to problems with unsigned long long on
# artaxerxes1. -Daniel, 8/24/97
# check for long long int type; if we have it, use it
#AC_CC_PROCESS_CHECK(C integer size test,[
#unsigned long long i;
#],-o conftest,LONG_TYPE="unsigned long long";
#AC_MSG_RESULT(using unsigned long long int),
#LONG_TYPE="unsigned long";
#AC_MSG_RESULT(using unsigned long int))
#AC_SUBST(LONG_TYPE)
# See if the fortran compiler takes '-Olimit 3000'. If so then
# use it.
AC_FC_COMPILE_CHECK(-Olimit 3000,,-Olimit 3000,
FOPT="$FOPT -Olimit 3000" AC_MSG_RESULT(using -Olimit 3000))
# The sgi f77 compiler needs to have the number of labels allowed
# in a computed goto increased. See if the compiler takes
# the -Nl option.
AC_FC_COMPILE_CHECK(-Nl1000,,-Nl1000,
FOPT="$FOPT -Nl1000" AC_MSG_RESULT(using -Nl1000))
# The sgi f77 compiler needs to have the number of names allowed
# increased. See if the compiler takes the -Nn option.
AC_FC_COMPILE_CHECK(-Nn10000,,-Nn10000,
FOPT="$FOPT -Nn10000" AC_MSG_RESULT(using -Nn10000))
AC_CHECKING(machine specfic optimization flags)
changequote(,)
# set up arch specific flags
case $arch in
power)
# should give -qarch=pwr -qtune=pwr, but i'm not sure if the older
# compilers take these
if [ "$FC" = xlf ]; then
FOPT="-O -qxflag=xalias -qdpc -qfold -qmaf"
AC_MSG_RESULT(fortran flags: $FOPT)
fi
if [ "$CC" = xlc ] || [ "$CC" = cc ]; then
COPT="-O -qfold -qmaf"
AC_MSG_RESULT(c flags: $COPT)
fi
;;
#
# one day you should add -qarch=pwrx to FOPT, but it blows monkey meat right
# now
#
power2)
if [ "$FC" = xlf ]; then
FOPT="-O2 -qxflag=xalias -qdpc"
AC_MSG_RESULT(fortran flags: $FOPT)
fi
if [ "$CC" = xlc ] || [ "$CC" = cc ]; then
COPT="-O2 -qarch=pwrx -qtune=pwrx"
AC_MSG_RESULT(c flags: $COPT)
fi
;;
esac
changequote([,])
# Set up CFLAGS and FFLAGS.
CFLAGS='$(CDBG) $(COPT) $(CDEF) $(COTH) $(CINC)' AC_SUBST(CFLAGS)
FFLAGS='$(FDBG) $(FOPT) $(FOTH) $(FSTATIC)' AC_SUBST(FFLAGS)
# Adjust the debug flags.
# The default is to not debug. --with-debug will turn on debugging.
AC_ARG_WITH(debug,--with-debug will turn on debugging,[
case $withval in
yes)
;;
no)
CDBG=''
FDBG=''
;;
*)
CDBG="$withval"
FDBG="$withval"
;;
esac
],CDBG='' FDBG='')
# Adjust the optimize flags.
# The default is to optimize. --with-opt=no or --without-opt will turn
# off optimization.
AC_ARG_WITH(opt,--with-opt --with-opt=no will turn off optimization,[
case $withval in
yes)
;;
no)
COPT=''
FOPT=''
;;
*)
COPT="$withval"
FOPT="$withval"
;;
esac
])
# See if parallelism has been requested.
FPARDEF=''
FPAROPT=''
AC_ARG_WITH(parallel,--with-parallel use parallelization,[
case $withval in
sgi)
FPARDEF="-DSGI_PARALLEL -DPARALLEL"
FPAROPT="-mp"
;;
*)
AC_ERROR(invalid value $withval for --with-parallel)
;;
esac
])
AC_SUBST(FPARDEF)
AC_SUBST(FPAROPT)
# These nasty machine dependent tests should go away soon.
AC_CHECKING(os specific flags)
case $os in
hpux*)
fextra="-DHP400"
cextra="-DHP400"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
irix*)
fextra="-DSGI"
cextra="-DSGI"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
sun*)
fextra="-DSUN"
cextra="-DSUN"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
aix3*)
fextra="-DAIX -DAIXV3"
cextra="-DAIX -DAIXV3"
if test "$CC" = xlc; then
cextra = "-D_POSIX_SOURCE"
fi
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
aix*)
fextra="-DAIX"
cextra="-DAIX"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
ultrix*)
fextra="-DDEC"
cextra="-DDEC"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
osfV*)
fextra="-DDEC"
cextra="-DDEC"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
linux*)
fextra="-DLinux"
cextra="-DLinux"
AC_MSG_RESULT(fortran flags: $fextra)
AC_MSG_RESULT(c flags: $cextra)
;;
esac
FDEF="$FDEF $fextra"
CDEF="$CDEF $cextra"
AC_OUTPUT(include/psiconfig.h include/cfuncs.h include/ffuncs.h
include/sizeof.h include/Makefile
Makefile lib/Makefile src/Makefile
src/lib/Makefile src/lib/MakeRules src/lib/MakeVars
src/util/Makefile
src/util/psipp/Makefile
src/util/tmpl/Makefile
src/lib/alloc/Makefile
src/lib/io/Makefile
src/lib/io/param.h
src/lib/iomr/Makefile
src/lib/iomrth/Makefile
src/lib/libciomr/Makefile
src/lib/libciomr/iomrparam.h
src/lib/libcoallc/Makefile
src/lib/libipv1/Makefile
src/lib/libmalloc/Makefile
src/lib/libparse/Makefile
src/lib/libfile30/Makefile
src/bin/Makefile src/bin/MakeRules src/bin/MakeVars
src/bin/anharm/Makefile
src/bin/backtr/Makefile
src/bin/bmat/Makefile
src/bin/bondex/Makefile
src/bin/casscf/Makefile
src/bin/cceg/Makefile
src/bin/ccprop/Makefile
src/bin/ccqg/Makefile
src/bin/ccsr/Makefile
src/bin/cctr/Makefile
src/bin/cctransl2/Makefile
src/bin/cczv/Makefile
src/bin/ciprop/Makefile
src/bin/cisort/Makefile
src/bin/contour/Makefile
src/bin/contour3d/Makefile
src/bin/cphf/Makefile
src/bin/cphfci/Makefile
src/bin/cscf/Makefile
src/bin/deriv/Makefile
src/bin/derivth/Makefile
src/bin/dipder/Makefile
src/bin/dipderth/Makefile
src/bin/drt/Makefile
src/bin/drtso/Makefile
src/bin/fcceg/Makefile
src/bin/filesname/Makefile
src/bin/form15/Makefile
src/bin/gradconv/Makefile
src/bin/gradtol/Makefile
src/bin/gugaci/Makefile
src/bin/inputth/Makefile
src/bin/intder/Makefile
src/bin/intder95/Makefile
src/bin/intdif/Makefile
src/bin/intsth/Makefile
src/bin/lag/Makefile
src/bin/lagzbak/Makefile
src/bin/lcceg/Makefile
src/bin/local/Makefile
src/bin/makepk/Makefile
src/bin/master/Makefile
src/bin/mastux/Makefile
src/bin/muder/Makefile
src/bin/normco/Makefile
src/bin/onepdm/Makefile
src/bin/oscc/Makefile
src/bin/oscc3/Makefile
src/bin/oscc4/Makefile
src/bin/proper/Makefile
src/bin/psi/Makefile
src/bin/ramanc/Makefile
src/bin/ramang/Makefile
src/bin/ramint/Makefile
src/bin/read30th/Makefile
src/bin/read34/Makefile
src/bin/rgeom/Makefile
src/bin/rrkm/Makefile
src/bin/scfrg/Makefile
src/bin/scfth/Makefile
src/bin/scfx/Makefile
src/bin/stgrmo/Makefile
src/bin/trans/Makefile
src/bin/traniux/Makefile
src/bin/twopdm/Makefile
src/bin/ugeom/Makefile
src/bin/viblrg/Makefile
src/bin/writ17/Makefile
src/bin/writ20/Makefile
src/bin/writ24/Makefile
src/bin/zmat/Makefile
src/bin/add_file11/Makefile
src/bin/analy_pot3/Makefile
src/bin/energy_pot3/Makefile
src/bin/fd_grad3/Makefile
src/bin/fd_hess3/Makefile
src/bin/fd_int3/Makefile
src/bin/pot_int3/Makefile
src/bin/roll_file11/Makefile
src/bin/roll_file61/Makefile
src/bin/select_pot3/Makefile
src/bin/sort_pot3/Makefile
src/bin/vib3/Makefile
)