Changeset c3a4385


Ignore:
Timestamp:
Jun 2, 2015, 8:12:44 AM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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, string, with_gc
Children:
30651b0, 4eb1db6
Parents:
6e7e2b36
Message:

redo automake eighth attempt

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r6e7e2b36 rc3a4385  
    2020
    2121# src executables, for lib and bin
    22 driver/cc1
    23 driver/cfa
     22src/driver/cc1
     23src/driver/cfa
    2424src/cfa-cpp
    25 libcfa/libcfa-prelude.c
     25src/libcfa/libcfa-prelude.c
    2626
    27 # generated by bison and lex from cfa.y and lex.l, respectively
     27# generated by bison and lex from cfa.yy and lex.ll, respectively
    2828src/Parser/parser.output
  • configure

    r6e7e2b36 rc3a4385  
    45284528
    45294529        # deprecated
     4530# These are often not installed and people miss seeing the "no", so stop the configure.
    45304531for ac_prog in 'bison -y' byacc
    45314532do
     
    45714572test -n "$YACC" || YACC="yacc"
    45724573
     4574if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
    45734575
    45744576for ac_prog in flex lex
     
    47304732
    47314733fi
     4734if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
    47324735
    47334736{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
  • configure.ac

    r6e7e2b36 rc3a4385  
    6666AC_PROG_CC
    6767AM_PROG_CC_C_O  # deprecated
     68# These are often not installed and people miss seeing the "no", so stop the configure.
    6869AC_PROG_YACC
     70if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi
    6971AC_PROG_LEX
     72if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi
    7073AC_PROG_INSTALL
    7174AC_PROG_MAKE_SET
Note: See TracChangeset for help on using the changeset viewer.