Changeset ef7d253 for configure.ac


Ignore:
Timestamp:
Jun 14, 2016, 11:12:40 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
600b6c2
Parents:
3dcd347a
Message:

updated automake config to support less verbose build and compile the tests directory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r3dcd347a ref7d253  
    77#AC_CONFIG_SRCDIR([src/main.cc])
    88AC_CONFIG_HEADERS([config.h])
     9AM_SILENT_RULES([no])
    910
    1011if test "x${CXXFLAGS}" = "x"; then
     
    1920# Installation paths
    2021
    21 AC_ARG_WITH(backend-compiler, 
    22         [  --with-backend-compiler=PROGRAM     PROGRAM that performs the final code compilation (must be gcc-compatible) ], 
     22AC_ARG_WITH(backend-compiler,
     23        [  --with-backend-compiler=PROGRAM     PROGRAM that performs the final code compilation (must be gcc-compatible) ],
    2324        backendcompiler=$withval, backendcompiler="")
    2425if test "x$backendcompiler" != x; then
     
    3839else
    3940        cfa_prefix=${prefix}
    40 fi 
     41fi
    4142AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
    4243AC_SUBST(CFA_PREFIX, ${cfa_prefix})
     
    4647else
    4748        cfa_incdir=${includedir}
    48 fi 
     49fi
    4950AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
    5051AC_SUBST(CFA_INCDIR, ${cfa_incdir})
     
    5455else
    5556        cfa_bindir=${bindir}
    56 fi 
     57fi
    5758AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
    5859AC_SUBST(CFA_BINDIR, ${cfa_bindir})
     
    6263else
    6364        cfa_libdir=${libdir}
    64 fi 
     65fi
    6566AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
    6667AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
     
    105106        src/Makefile
    106107        src/examples/Makefile
     108        src/tests/Makefile
    107109        src/libcfa/Makefile
    108110        ])
Note: See TracChangeset for help on using the changeset viewer.