1 |
dnl Process this file with autoconf to produce a configure script. |
dnl Process this file with autoconf to produce a configure script. |
2 |
dnl |
dnl |
3 |
dnl COPYRIGHT (c) 2010 The Diderot Project |
dnl COPYRIGHT (c) 2012 The Diderot Project |
4 |
dnl All rights reserved. |
dnl All rights reserved. |
5 |
dnl |
dnl |
6 |
|
|
7 |
AC_INIT(diderot,0.1,) |
AC_INIT(diderot,0.1,) |
8 |
|
|
9 |
AC_PREREQ(2.60) |
AC_PREREQ(2.60) |
10 |
AC_COPYRIGHT([[COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu)]]) |
AC_COPYRIGHT([[COPYRIGHT (c) 2012 The Diderot Project (http://diderot-language.cs.uchicago.edu)]]) |
11 |
AC_CONFIG_SRCDIR(src/dnorm/dnorm.c) |
AC_CONFIG_SRCDIR(src/dnorm/dnorm.c) |
12 |
AC_CONFIG_AUX_DIR(config) |
AC_CONFIG_AUX_DIR(config) |
13 |
AC_CONFIG_MACRO_DIR(config) |
AC_CONFIG_MACRO_DIR(config) |
464 |
AC_CONFIG_FILES([ |
AC_CONFIG_FILES([ |
465 |
src/compiler/gen/file2str/file2str.sh:src/compiler/gen/file2str/file2str_sh.in |
src/compiler/gen/file2str/file2str.sh:src/compiler/gen/file2str/file2str_sh.in |
466 |
], [chmod +x src/compiler/gen/file2str/file2str.sh]) |
], [chmod +x src/compiler/gen/file2str/file2str.sh]) |
467 |
|
AC_CONFIG_FILES([ |
468 |
|
rtest/scripts/run.sh:rtest/scripts/run_sh.in |
469 |
|
], [chmod +x rtest/scripts/run.sh]) |
470 |
|
AC_CONFIG_FILES([ |
471 |
|
rtest/scripts/run-one.sh:rtest/scripts/run-one_sh.in |
472 |
|
], [chmod +x rtest/scripts/run-one.sh]) |
473 |
|
|
474 |
dnl |
dnl |
475 |
dnl generate makefiles for runtime library builds |
dnl generate makefiles for runtime library builds |
498 |
MK_BUILD_DIR(rt-c-d-par-debug, parallel, [parallel double debug]) |
MK_BUILD_DIR(rt-c-d-par-debug, parallel, [parallel double debug]) |
499 |
|
|
500 |
if test x"$CL_ENABLED" = xtrue ; then |
if test x"$CL_ENABLED" = xtrue ; then |
501 |
MK_BUILD_DIR(rt-cl-f, cl, [exec float]) |
MK_BUILD_DIR(rt-cl-f, cl, [float]) |
502 |
MK_BUILD_DIR(rt-cl-d, cl, [exec double]) |
MK_BUILD_DIR(rt-cl-d, cl, [double]) |
503 |
MK_BUILD_DIR(rt-cl-f-debug, cl, [exec float debug]) |
MK_BUILD_DIR(rt-cl-f-debug, cl, [float debug]) |
504 |
MK_BUILD_DIR(rt-cl-d-debug, cl, [exec double debug]) |
MK_BUILD_DIR(rt-cl-d-debug, cl, [double debug]) |
505 |
fi |
fi |
506 |
|
|
507 |
AC_OUTPUT |
AC_OUTPUT |