source: libcfa/configure.ac @ c59712e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since c59712e was c59712e, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Parent make now seems to properly call libcfa

  • Property mode set to 100644
File size: 828 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.68])
5AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca])
6AC_CONFIG_AUX_DIR([./automake])
7
8AM_INIT_AUTOMAKE([subdir-objects])
9
10# Allow program name tansformation
11# will fill program_transform_name with appropriate sed regex
12AC_ARG_PROGRAM
13
14AC_CANONICAL_BUILD
15AC_CANONICAL_HOST
16
17AC_ARG_VAR(CONFIGURATION, [The configuration to use when building libcfa, options are: deubg, nodebug, nolib (prelude-only)])
18
19# Checks for programs.
20AC_PROG_CXX
21AC_PROG_CC
22AM_PROG_AS
23AC_PROG_INSTALL
24AC_PROG_MAKE_SET
25AC_PROG_RANLIB
26
27AC_CONFIG_FILES([
28        Makefile
29        src/Makefile
30        prelude/Makefile
31        ])
32
33AC_OUTPUT()
34
35# Final text
36AC_MSG_RESULT(Cforall library configuraton completed. Type "make -j 8 install".)
Note: See TracBrowser for help on using the repository browser.