forked from lballabio/QuantLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
597 lines (548 loc) · 25.2 KB
/
configure.ac
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
# Process this file with autoconf to produce a configure script.
AC_INIT([QuantLib], [1.31-dev],
[quantlib-dev@lists.sourceforge.net],
[QuantLib])
AC_PREREQ(2.62)
AC_CONFIG_SRCDIR([ql/qldefines.hpp])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADERS([ql/config.hpp])
AM_INIT_AUTOMAKE([foreign nostdinc subdir-objects tar-ustar])
AC_CONFIG_MACRO_DIR([m4])
AC_COPYRIGHT([
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 StatPro Italia srl
Copyright (C) 2004, 2005 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.])
AC_PROG_AWK
AC_PROG_INSTALL
# Help the compiler find external software
AC_ARG_WITH([boost-include],
AS_HELP_STRING([--with-boost-include=INCLUDE_PATH],
[Supply the location of Boost header files]),
[ql_boost_include_path="`cd ${withval} 2>/dev/null && pwd`"],
[ql_boost_include_path=""])
if test [ -n "$ql_boost_include_path" ] ; then
AC_SUBST([BOOST_INCLUDE],["-isystem ${ql_boost_include_path}"])
AC_SUBST([CPPFLAGS],["${CPPFLAGS} -isystem ${ql_boost_include_path}"])
fi
# Continue setup
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
LT_INIT
AM_CONDITIONAL(ENABLE_STATIC, test "${enable_static}" == "yes")
AC_LANG([C++])
AC_ARG_ENABLE([openmp],
AS_HELP_STRING([--enable-openmp],
[If enabled, configure will try to detect
and enable OpenMP support.]),
[ql_openmp=$enableval],
[ql_openmp=no])
if test "$ql_openmp" = "yes" ; then
AC_OPENMP
AC_SUBST([CXXFLAGS],["${CXXFLAGS} ${OPENMP_CXXFLAGS}"])
fi
# Check for C++14 support
QL_CHECK_CPP14
# Check for other compiler flags
QL_CHECK_SYSTEM_HEADER_PREFIX
# Check for Boost components
QL_CHECK_BOOST
# Check for Emacs
AM_PATH_LISPDIR
AM_CONDITIONAL(EMACS_FOUND, test "${EMACS}" != "no")
# Check for tools needed for building documentation
AC_PATH_PROG([DOXYGEN], [doxygen])
AC_PATH_PROG([SED], [sed])
AC_PATH_PROG([LATEX], [latex])
AC_PATH_PROG([PDFLATEX], [pdflatex])
AC_PATH_PROG([MAKEINDEX], [makeindex])
AC_PATH_PROG([DVIPS], [dvips])
# site configuration
# AC_ARG_WITH([real],
# AS_HELP_STRING([--with-real=type],
# [The given type will be used for floating-point
# calculations.
# In case this option is not invoked, double
# will be used.]),
# [AC_DEFINE_UNQUOTED([QL_REAL],[$withval],
# [Define this as the type to be used for
# floating-point calculations.])],
# [AC_DEFINE_UNQUOTED([QL_REAL],[double],
# [Define this as the type to be used for
# floating-point calculations.])])
# AC_ARG_WITH([integer],
# AS_HELP_STRING([--with-integer=type],
# [The given type will be used for integer
# calculations. At least an int is required.
# In case this option is not invoked, int
# will be used.]),
# [AC_DEFINE_UNQUOTED([QL_INTEGER],[$withval],
# [Define this as the type to be used for
# integer calculations. At least an int
# is required.])],
# [AC_DEFINE_UNQUOTED([QL_INTEGER],[int],
# [Define this as the type to be used for
# integer calculations. At least an int
# is required.])])
# AC_ARG_WITH([big-integer],
# AS_HELP_STRING([--with-big-integer=type],
# [The given type will be used for large integer
# calculations. At least 4 bytes are required.
# In case this option is not invoked, long
# will be used.]),
# [AC_DEFINE_UNQUOTED([QL_BIG_INTEGER],[$withval],
# [Define this as the type to be used for
# large integer calculations. At least
# 4 bytes are required.])],
# [AC_DEFINE_UNQUOTED([QL_BIG_INTEGER],[long],
# [Define this as the type to be used for
# large integer calculations. At least
# 4 bytes are required.])])
AC_ARG_ENABLE([error-lines],
AS_HELP_STRING([--enable-error-lines],
[If enabled, file and line information is
added to the error messages thrown by
the library.]),
[ql_error_lines=$enableval],
[ql_error_lines=no])
AC_MSG_CHECKING([whether to add file and line information to errors])
if test "$ql_error_lines" = "yes" ; then
AC_DEFINE([QL_ERROR_LINES],[1],
[Define this if error messages should include file and line
information.])
fi
AC_MSG_RESULT([$ql_error_lines])
AC_ARG_ENABLE([error-functions],
AS_HELP_STRING([--enable-error-functions],
[If enabled, current function information
is added to the error messages thrown by
the library.]),
[ql_error_functions=$enableval],
[ql_error_functions=no])
AC_MSG_CHECKING([whether to add function information to errors])
if test "$ql_error_functions" = "yes" ; then
AC_DEFINE([QL_ERROR_FUNCTIONS],[1],
[Define this if error messages should include current function
information.])
fi
AC_MSG_RESULT([$ql_error_functions])
AC_ARG_ENABLE([tracing],
AS_HELP_STRING([--enable-tracing],
[If enabled, tracing messages might be emitted
by the library depending on run-time
settings. Enabling this option can degrade
performance.]),
[ql_tracing=$enableval],
[ql_tracing=no])
AC_MSG_CHECKING([whether to enable tracing])
if test "$ql_tracing" = "yes" ; then
AC_DEFINE([QL_ENABLE_TRACING],[1],
[Define this if tracing messages should allowed (whether they
are actually emitted will depend on run-time settings.)])
fi
AC_MSG_RESULT([$ql_tracing])
AC_MSG_CHECKING([whether to enable indexed coupons])
AC_ARG_ENABLE([indexed-coupons],
AS_HELP_STRING([--enable-indexed-coupons],
[If enabled, indexed coupons (see the
documentation) are used in floating legs.
If disabled (the default), par coupons
are used.]),
[ql_indexed_coupon=$enableval],
[ql_indexed_coupon=no])
if test "$ql_indexed_coupon" = "yes" ; then
AC_DEFINE([QL_USE_INDEXED_COUPON],[1],
[Define this to use indexed coupons instead of par coupons in
floating legs.])
fi
AC_MSG_RESULT([$ql_indexed_coupon])
AC_MSG_CHECKING([whether to enable extra safety checks])
AC_ARG_ENABLE([extra-safety-checks],
AS_HELP_STRING([--enable-extra-safety-checks],
[If enabled, extra run-time checks are added
to a few functions. This can prevent their
inlining and degrade performance.]),
[ql_belt_and_braces=$enableval],
[ql_belt_and_braces=no])
if test "$ql_belt_and_braces" = "yes" ; then
AC_DEFINE([QL_EXTRA_SAFETY_CHECKS],[1],
[Define this if extra safety checks should be performed.
This can degrade performance.])
fi
AC_MSG_RESULT([$ql_belt_and_braces])
AC_MSG_CHECKING([whether to enable sessions])
AC_ARG_ENABLE([sessions],
AS_HELP_STRING([--enable-sessions],
[If enabled, singletons will return different
instances for different sessions. You will
have to provide and link with the library
a sessionId() function in namespace QuantLib,
returning a different session id for each
session. This also implies thread-safe
Singleton initialization.]),
[ql_use_sessions=$enableval],
[ql_use_sessions=no])
if test "$ql_use_sessions" = "yes" ; then
AC_DEFINE([QL_ENABLE_SESSIONS],[1],
[Define this if you want to enable sessions.])
fi
AC_MSG_RESULT([$ql_use_sessions])
AC_MSG_CHECKING([whether to enable thread-safe observer pattern])
AC_ARG_ENABLE([thread-safe-observer-pattern],
AS_HELP_STRING([--enable-thread-safe-observer-pattern],
[If enabled, thread-safe version of the
observer pattern will be used. You should
enable it if you want to use QuantLib
via the SWIG layer within the JVM or .NET
eco system or any environment with an
async garbage collector. C++-17 is required
if this option is used together with
--enable-std-pointers]),
[ql_use_tsop=$enableval],
[ql_use_tsop=no])
AC_MSG_RESULT([$ql_use_tsop])
if test "$ql_use_tsop" = "yes" ; then
AC_DEFINE([QL_ENABLE_THREAD_SAFE_OBSERVER_PATTERN],[1],
[Define this if you want to enable
thread-safe observer pattern.])
fi
if test "$ql_use_sessions" = "yes" || test "$ql_use_tsop" = "yes"; then
QL_CHECK_BOOST_VERSION_1_58_OR_HIGHER
QL_CHECK_BOOST_SIGNALS2
else
AC_SUBST([PTHREAD_LIB],[""])
fi
AC_MSG_CHECKING([whether to enable parallel unit test runner])
AC_ARG_ENABLE([parallel-unit-test-runner],
AS_HELP_STRING([--enable-parallel-unit-test-runner],
[If enabled, a parallel unit test runner is used
to execute the C++ test suite. This will reduce
the runtime on multi core CPUs.]),
[ql_use_parallel_test=$enableval],
[ql_use_parallel_test=no])
AC_MSG_RESULT([$ql_use_parallel_test])
if test "$ql_use_parallel_test" = "yes" ; then
AC_DEFINE([QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER],[1],
[Define this if you want to enable
the parallel unit test runner.])
QL_CHECK_BOOST_VERSION_1_59_OR_HIGHER
QL_CHECK_BOOST_TEST_INTERPROCESS
else
AC_SUBST([BOOST_INTERPROCESS_LIB],[""])
fi
AC_MSG_CHECKING([whether to install examples])
AC_ARG_ENABLE([examples],
AS_HELP_STRING([--enable-examples],
[If enabled, examples are built and installed
when "make" and "make install" are invoked.
If disabled (the default) they are built
but not installed.]),
[ql_install_examples=$enableval],
[ql_install_examples=no])
AM_CONDITIONAL(AUTO_EXAMPLES, test "$ql_install_examples" != "no")
AC_MSG_RESULT([$ql_install_examples])
AC_MSG_CHECKING([whether to install the benchmark])
AC_ARG_ENABLE([benchmark],
AS_HELP_STRING([--enable-benchmark],
[If enabled, the benchmark is built and
installed when "make" and "make install"
are invoked. If disabled (the default)
it is built but not installed.]),
[ql_install_benchmark=$enableval],
[ql_install_benchmark=no])
AM_CONDITIONAL(AUTO_BENCHMARK, test "$ql_install_benchmark" != "no")
AC_MSG_RESULT([$ql_install_benchmark])
AC_MSG_CHECKING([whether to use unity build])
AC_ARG_ENABLE([unity-build],
AS_HELP_STRING([--enable-unity-build],
[If enabled, the source files in each directory
are collected into one single source file and
compiled together. This can speed up the
compilation of the library.
If disabled (the default) each source file is
compiled separately..]),
[ql_use_unity_build=$enableval],
[ql_use_unity_build=no])
AM_CONDITIONAL(UNITY_BUILD, test "$ql_use_unity_build" != "no")
AC_MSG_RESULT([$ql_use_unity_build])
AC_MSG_CHECKING([whether to enable intraday date and daycounters])
AC_ARG_ENABLE([intraday],
AS_HELP_STRING([--enable-intraday],
[If enabled, date objects will support an intraday
datetime resolution down to microseconds.
Strickly monotone daycounters (Actual360,
Actual365Fixed and ActualActual) will take
the additional information into account
and allow for accurate intraday pricing.
If disabled (the default) the smallest
resolution of date objects will be a single day.
Intraday datetime resolution is experimental.]),
[ql_use_intraday=$enableval],
[ql_use_intraday=no])
if test "$ql_use_intraday" = "yes" ; then
AC_DEFINE([QL_HIGH_RESOLUTION_DATE],[1],
[Define this if you want to enable high resolution date class.])
fi
AC_MSG_RESULT([$ql_use_intraday])
AC_MSG_CHECKING([whether to enable std::any instead of boost::any])
AC_ARG_ENABLE([std-any],
AS_HELP_STRING([--enable-std-any],
[If enabled, std::any and related classes and
functions will be used instead of boost::any.
This requires C++17. If disabled (the default)
the Boost facilities are used.]),
[ql_use_std_any=$enableval],
[ql_use_std_any=no])
if test "$ql_use_std_any" = "yes" ; then
AC_DEFINE([QL_USE_STD_ANY],[1],
[Define this if you want to use std::any.])
fi
AC_MSG_RESULT([$ql_use_std_any])
AC_MSG_CHECKING([whether to enable std::optional instead of boost::optional])
AC_ARG_ENABLE([std-optional],
AS_HELP_STRING([--enable-std-optional],
[If enabled, std::optional and related
classes and functions will be used instead
of boost::optional. This requires C++17.
If disabled (the default) the Boost facilities
are used.]),
[ql_use_std_optional=$enableval],
[ql_use_std_optional=no])
if test "$ql_use_std_optional" = "yes" ; then
AC_DEFINE([QL_USE_STD_OPTIONAL],[1],
[Define this if you want to use std::optional.])
fi
AC_MSG_RESULT([$ql_use_std_optional])
AC_MSG_CHECKING([whether to enable standard smart pointers])
AC_ARG_ENABLE([std-pointers],
AS_HELP_STRING([--enable-std-pointers],
[If enabled, std::shared_ptr and related
classes and functions will be used instead
of boost::shared_ptr.
If disabled (the default) the Boost facilities
are used.
Note that std::shared_ptr does not check
access and can cause segmentation faults.]),
[ql_use_std_pointers=$enableval],
[ql_use_std_pointers=no])
if test "$ql_use_std_pointers" = "yes" ; then
AC_DEFINE([QL_USE_STD_SHARED_PTR],[1],
[Define this if you want to use standard smart pointers.])
fi
AC_MSG_RESULT([$ql_use_std_pointers])
AC_MSG_CHECKING([whether to enable std::function])
AC_ARG_ENABLE([std-function],
AS_HELP_STRING([--enable-std-function],
[If enabled, std::function and std::bind will be
used instead of boost::function and boost::bind.
If disabled (the default) the Boost facilities
are used.]),
[ql_use_std_function=$enableval],
[ql_use_std_function=no])
if test "$ql_use_std_function" = "yes" ; then
AC_DEFINE([QL_USE_STD_FUNCTION],[1],
[Define this if you want to use std::function and std::bind.])
fi
AC_MSG_RESULT([$ql_use_std_function])
AC_MSG_CHECKING([whether to enable std::tuple])
AC_ARG_ENABLE([std-tuple],
AS_HELP_STRING([--enable-std-tuple],
[If enabled, std::tuple and related functions
will be used instead of boost::tuple.
If disabled (the default) the Boost facilities
are used.]),
[ql_use_std_tuple=$enableval],
[ql_use_std_tuple=no])
if test "$ql_use_std_tuple" = "yes" ; then
AC_DEFINE([QL_USE_STD_TUPLE],[1],
[Define this if you want to use std::tuple.])
fi
AC_MSG_RESULT([$ql_use_std_pointers])
AC_MSG_CHECKING([whether to enable available std classes])
AC_ARG_ENABLE([std-classes],
AS_HELP_STRING([--enable-std-classes],
[This is a shortcut for --enable-std-pointers
--enable-std-function --enable-std-tuple.
If enabled, this supersedes any --disable
option passed for the above.]),
[ql_use_std_classes=$enableval],
[ql_use_std_classes=no])
if test "$ql_use_std_classes" = "yes" ; then
AC_DEFINE([QL_USE_STD_SHARED_PTR],[1],
[Define this if you want to use standard smart pointers.])
AC_DEFINE([QL_USE_STD_FUNCTION],[1],
[Define this if you want to use std::function and std::bind.])
AC_DEFINE([QL_USE_STD_TUPLE],[1],
[Define this if you want to use std::tuple.])
fi
AC_MSG_RESULT([$ql_use_std_classes])
AC_MSG_CHECKING([whether to enable the implementation of Null as template functions])
AC_ARG_ENABLE([null-as-functions],
AS_HELP_STRING([--enable-null-as-functions],
[If enabled, Null will be implemented as a set
of template functions. This allows the code
to work with user-defined Real types but was
reported to cause internal compiler errors
with Visual C++ 2022 in some cases.
If disabled (the default) Null will be
implemented as a class template, as in
previous releases.]),
[ql_use_null_functions=$enableval],
[ql_use_null_functions=no])
if test "$ql_use_null_functions" = "yes" ; then
AC_DEFINE([QL_NULL_AS_FUNCTIONS],[1],
[Define this if you want to enable the implementation of Null as template functions.])
fi
AC_MSG_RESULT([$ql_use_null_functions])
AC_MSG_CHECKING([whether to compile the test suite])
AC_ARG_ENABLE([test-suite],
AS_HELP_STRING([--enable-test-suite],
[If enabled (the default), the test suite is
also built, assuming Boost.Test could be found.
If disabled, it is not. Do not try this at home.]),
[ql_build_test_suite=$enableval],
[ql_build_test_suite=yes])
AM_CONDITIONAL(BUILD_TEST_SUITE, test "$ql_build_test_suite" != "no" && test "x${HAVE_BOOST_TEST}" != "x" )
AC_MSG_RESULT([$ql_build_test_suite])
# manual configurations for specific hosts
case $host in
sparc-sun-solaris*)
AC_DEFINE([QL_PATCH_SOLARIS],[1],
[Define if running on a Sun Solaris machine.])
;;
esac
# done, output the configured files
AC_CONFIG_FILES([
Makefile
ql/Makefile
ql/cashflows/Makefile
ql/currencies/Makefile
ql/experimental/Makefile
ql/experimental/amortizingbonds/Makefile
ql/experimental/asian/Makefile
ql/experimental/averageois/Makefile
ql/experimental/barrieroption/Makefile
ql/experimental/basismodels/Makefile
ql/experimental/callablebonds/Makefile
ql/experimental/catbonds/Makefile
ql/experimental/commodities/Makefile
ql/experimental/coupons/Makefile
ql/experimental/credit/Makefile
ql/experimental/exoticoptions/Makefile
ql/experimental/finitedifferences/Makefile
ql/experimental/forward/Makefile
ql/experimental/fx/Makefile
ql/experimental/inflation/Makefile
ql/experimental/lattices/Makefile
ql/experimental/math/Makefile
ql/experimental/mcbasket/Makefile
ql/experimental/models/Makefile
ql/experimental/processes/Makefile
ql/experimental/risk/Makefile
ql/experimental/shortrate/Makefile
ql/experimental/swaptions/Makefile
ql/experimental/termstructures/Makefile
ql/experimental/variancegamma/Makefile
ql/experimental/varianceoption/Makefile
ql/experimental/volatility/Makefile
ql/indexes/Makefile
ql/indexes/ibor/Makefile
ql/indexes/inflation/Makefile
ql/indexes/swap/Makefile
ql/instruments/Makefile
ql/instruments/bonds/Makefile
ql/legacy/Makefile
ql/legacy/libormarketmodels/Makefile
ql/math/Makefile
ql/math/copulas/Makefile
ql/math/distributions/Makefile
ql/math/integrals/Makefile
ql/math/interpolations/Makefile
ql/math/matrixutilities/Makefile
ql/math/ode/Makefile
ql/math/optimization/Makefile
ql/math/randomnumbers/Makefile
ql/math/solvers1d/Makefile
ql/math/statistics/Makefile
ql/methods/Makefile
ql/methods/finitedifferences/Makefile
ql/methods/finitedifferences/meshers/Makefile
ql/methods/finitedifferences/operators/Makefile
ql/methods/finitedifferences/schemes/Makefile
ql/methods/finitedifferences/solvers/Makefile
ql/methods/finitedifferences/stepconditions/Makefile
ql/methods/finitedifferences/utilities/Makefile
ql/methods/lattices/Makefile
ql/methods/montecarlo/Makefile
ql/models/Makefile
ql/models/equity/Makefile
ql/models/marketmodels/Makefile
ql/models/marketmodels/browniangenerators/Makefile
ql/models/marketmodels/callability/Makefile
ql/models/marketmodels/correlations/Makefile
ql/models/marketmodels/curvestates/Makefile
ql/models/marketmodels/driftcomputation/Makefile
ql/models/marketmodels/evolvers/Makefile
ql/models/marketmodels/evolvers/volprocesses/Makefile
ql/models/marketmodels/models/Makefile
ql/models/marketmodels/pathwisegreeks/Makefile
ql/models/marketmodels/products/Makefile
ql/models/marketmodels/products/onestep/Makefile
ql/models/marketmodels/products/multistep/Makefile
ql/models/marketmodels/products/pathwise/Makefile
ql/models/shortrate/Makefile
ql/models/shortrate/calibrationhelpers/Makefile
ql/models/shortrate/onefactormodels/Makefile
ql/models/shortrate/twofactormodels/Makefile
ql/models/volatility/Makefile
ql/patterns/Makefile
ql/pricingengines/Makefile
ql/pricingengines/asian/Makefile
ql/pricingengines/barrier/Makefile
ql/pricingengines/basket/Makefile
ql/pricingengines/bond/Makefile
ql/pricingengines/capfloor/Makefile
ql/pricingengines/cliquet/Makefile
ql/pricingengines/credit/Makefile
ql/pricingengines/forward/Makefile
ql/pricingengines/inflation/Makefile
ql/pricingengines/lookback/Makefile
ql/pricingengines/quanto/Makefile
ql/pricingengines/swap/Makefile
ql/pricingengines/swaption/Makefile
ql/pricingengines/vanilla/Makefile
ql/processes/Makefile
ql/quotes/Makefile
ql/termstructures/Makefile
ql/termstructures/credit/Makefile
ql/termstructures/inflation/Makefile
ql/termstructures/volatility/Makefile
ql/termstructures/volatility/equityfx/Makefile
ql/termstructures/volatility/capfloor/Makefile
ql/termstructures/volatility/inflation/Makefile
ql/termstructures/volatility/optionlet/Makefile
ql/termstructures/volatility/swaption/Makefile
ql/termstructures/yield/Makefile
ql/time/Makefile
ql/time/calendars/Makefile
ql/time/daycounters/Makefile
ql/utilities/Makefile
man/Makefile
m4/Makefile
Docs/Makefile
Examples/Makefile
test-suite/Makefile])
AC_CONFIG_FILES([quantlib-config],[chmod +x quantlib-config])
AC_CONFIG_FILES([QuantLib.spec])
AC_CONFIG_FILES([quantlib.pc])
AC_OUTPUT