Changes in / [0e0f128c:7b3a6e6]


Ignore:
Files:
4 added
7 deleted
27 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r0e0f128c r7b3a6e6  
    2828
    2929# src executables, for lib and bin
    30 src/driver/as
    31 src/driver/cfa
    32 src/driver/cfa-cpp
    33 src/driver/cc1
     30driver/as
     31driver/cfa
     32driver/cfa-cpp
     33driver/cc1
    3434
    35 src/prelude/bootloader.c
    36 src/prelude/builtins.cf
    37 src/prelude/extras.cf
    38 src/prelude/gcc-builtins.cf
    39 src/prelude/gcc-builtins.c
    40 src/prelude/prelude.cf
    41 src/libcfa/libcfa-prelude.c
     35libcfa/prelude/bootloader.c
     36libcfa/prelude/builtins.cf
     37libcfa/prelude/extras.cf
     38libcfa/prelude/gcc-builtins.cf
     39libcfa/prelude/gcc-builtins.c
     40libcfa/prelude/prelude.cf
     41libcfa/x64-debug/
     42libcfa/x64-nodebug/
     43libcfa/x64-nolib/
     44libcfa/x86-debug/
     45libcfa/x86-nodebug/
     46libcfa/x86-nolib/
     47libcfa/arm-debug/
     48libcfa/arm-nodebug/
     49libcfa/arm-nolib/
     50
    4251
    4352# generated by bison and lex from parser.yy and lex.ll
  • Jenkinsfile

    r0e0f128c r7b3a6e6  
    277277                        //Use the current directory as the installation target so nothing escapes the sandbox
    278278                        //Also specify the compiler by hand
    279                         sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --enable-silent-rules --quiet"
     279                        targets=""
     280                        if(do_alltests) {
     281                                targets="--with-target-hosts='host:debug,host:nodebug'"
     282                        } else {
     283                                targets="--with-target-hosts='host:debug'"
     284                        }
     285
     286                        sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} ${targets} --with-backend-compiler=${compiler.cfa_cc} --quiet"
    280287
    281288                        //Compile the project
     
    291298                        //Run the tests from the tests directory
    292299                        if ( do_alltests ) {
    293                                 sh 'make --no-print-directory -C src/tests all-tests debug=yes'
    294                                 sh 'make --no-print-directory -C src/tests all-tests debug=no '
     300                                sh 'make --no-print-directory -C tests all-tests debug=yes'
     301                                sh 'make --no-print-directory -C tests all-tests debug=no '
    295302                        }
    296303                        else {
    297                                 sh 'make --no-print-directory -C src/tests'
     304                                sh 'make --no-print-directory -C tests'
    298305                        }
    299306                }
     
    308315                dir (builddir) {
    309316                        //Append bench results
    310                         sh "make --no-print-directory -C src/benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
     317                        sh "make --no-print-directory -C benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
    311318                }
    312319        }
     
    341348//Routine responsible of sending the email notification once the build is completed
    342349//===========================================================================================================
     350def gitBranchUpdate(String gitRefOldValue, String gitRefNewValue) {
     351        def update = ""
     352        sh "git rev-list ${gitRefOldValue}..${gitRefNewValue} > GIT_LOG";
     353        readFile('GIT_LOG').eachLine { rev ->
     354                sh "git cat-file -t ${rev} > GIT_TYPE"
     355                def type = readFile('GIT_TYPE')
     356
     357                update += "       via  ${rev} (${type})\n"
     358        }
     359        def rev = gitRefOldValue
     360        sh "git cat-file -t ${rev} > GIT_TYPE"
     361        def type = readFile('GIT_TYPE')
     362
     363        update += "      from  ${rev} (${type})\n"
     364        return update
     365
     366def output=readFile('result').trim()
     367echo "output=$output";
     368}
     369
    343370//Standard build email notification
    344371def email(String status, boolean log, boolean bIsSandbox) {
     
    349376        def gitLog = 'Error retrieving git logs'
    350377        def gitDiff = 'Error retrieving git diff'
     378        def gitUpdate = 'Error retrieving update'
    351379
    352380        try {
     381                gitUpdate = gitBranchUpdate(gitRefOldValue, gitRefNewValue)
    353382
    354383                sh "git rev-list --format=short ${gitRefOldValue}...${gitRefNewValue} > GIT_LOG"
     
    358387                gitDiff = readFile('GIT_DIFF')
    359388        }
    360         catch (Exception error) {}
     389        catch (Exception error) {
     390                echo error.toString()
     391                echo error.getMessage()
     392        }
    361393
    362394        def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}"
     
    367399
    368400The branch ${env.BRANCH_NAME} has been updated.
    369    via  ${gitRefOldValue} (commit)
    370   from  ${gitRefNewValue} (commit)
     401${gitUpdate}
    371402
    372403Check console output at ${env.BUILD_URL} to view the results.
  • Makefile.in

    r0e0f128c r7b3a6e6  
    284284EXEEXT = @EXEEXT@
    285285GREP = @GREP@
     286HOST_FLAGS = @HOST_FLAGS@
    286287INSTALL = @INSTALL@
    287288INSTALL_DATA = @INSTALL_DATA@
  • automake/cfa.m4

    r0e0f128c r7b3a6e6  
    66                cfa_prefix=${prefix}
    77        fi
     8        cfa_prefix="$(readlink -f ${cfa_prefix})/"
    89        AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
    910        AC_SUBST(CFA_PREFIX, ${cfa_prefix})
     
    1415                cfa_incdir=${includedir}
    1516        fi
     17        cfa_incdir="$(readlink -f ${cfa_incdir})/"
    1618        AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
    1719        AC_SUBST(CFA_INCDIR, ${cfa_incdir})
     
    2224                cfa_bindir=${bindir}
    2325        fi
     26        cfa_bindir="$(readlink -f ${cfa_bindir})/"
    2427        AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
    2528        AC_SUBST(CFA_BINDIR, ${cfa_bindir})
     
    3437                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    3538        fi
     39        cfa_libdir="$(readlink -f ${cfa_libdir})/"
    3640        AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
    3741        AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
     
    5458AC_DEFUN([M4CFA_CANNON_CPU], [
    5559        case $arch_name in
     60                "host") arch_name=${host_cpu};;
     61                *) ;;
     62        esac
     63
     64        case $arch_name in
    5665                "x64"        ) cannon_arch_name="x64";;
    5766                "x86-64"     ) cannon_arch_name="x64";;
  • benchmark/Makefile.am

    r0e0f128c r7b3a6e6  
    1414## Update Count     : 25
    1515###############################################################################
     16
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1618
    1719# applies to both programs
  • benchmark/Makefile.in

    r0e0f128c r7b3a6e6  
    168168EXEEXT = @EXEEXT@
    169169GREP = @GREP@
     170HOST_FLAGS = @HOST_FLAGS@
    170171INSTALL = @INSTALL@
    171172INSTALL_DATA = @INSTALL_DATA@
     
    253254top_builddir = @top_builddir@
    254255top_srcdir = @top_srcdir@
     256AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    255257CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS)
    256258AM_V_CFA = $(am__v_CFA_@AM_V@)
  • configure

    r0e0f128c r7b3a6e6  
    668668LIBCFA_TARGET_DIRS
    669669TARGET_HOSTS
     670HOST_FLAGS
    670671host_os
    671672host_vendor
     
    32343235                cfa_prefix=${prefix}
    32353236        fi
     3237        cfa_prefix="$(readlink -f ${cfa_prefix})/"
    32363238
    32373239cat >>confdefs.h <<_ACEOF
     
    32473249                cfa_incdir=${includedir}
    32483250        fi
     3251        cfa_incdir="$(readlink -f ${cfa_incdir})/"
    32493252
    32503253cat >>confdefs.h <<_ACEOF
     
    32603263                cfa_bindir=${bindir}
    32613264        fi
     3265        cfa_bindir="$(readlink -f ${cfa_bindir})/"
    32623266
    32633267cat >>confdefs.h <<_ACEOF
     
    32773281                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    32783282        fi
     3283        cfa_libdir="$(readlink -f ${cfa_libdir})/"
    32793284
    32803285cat >>confdefs.h <<_ACEOF
     
    32893294# Create variables for commonly used targets
    32903295
    3291 TOP_SRCDIR=$ac_pwd/$ac_confdir/
    3292 TOP_BUILDDIR=$ac_pwd/
     3296TOP_SRCDIR="$(readlink -f $ac_confdir/)/"
     3297TOP_BUILDDIR="$(readlink -f $ac_pwd/)/"
    32933298
    32943299
     
    34073412
    34083413
     3414if ! test "$host_cpu" = "$build_cpu"; then
     3415        case $host_cpu in
     3416                i386)
     3417                        HOST_FLAGS="-m32"
     3418                        ;;
     3419                i686)
     3420                        HOST_FLAGS="-m32"
     3421                        ;;
     3422                x86_64)
     3423                        HOST_FLAGS="-m64"
     3424                        ;;
     3425        esac
     3426fi
     3427
     3428
    34093429default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
    34103430
     
    34383458        esac
    34393459
     3460
     3461        case $arch_name in
     3462                "host") arch_name=${host_cpu};;
     3463                *) ;;
     3464        esac
    34403465
    34413466        case $arch_name in
     
    34723497
    34733498
     3499
     3500        case $arch_name in
     3501                "host") arch_name=${host_cpu};;
     3502                *) ;;
     3503        esac
    34743504
    34753505        case $arch_name in
  • configure.ac

    r0e0f128c r7b3a6e6  
    8080# Create variables for commonly used targets
    8181
    82 TOP_SRCDIR=$ac_pwd/$ac_confdir/
    83 TOP_BUILDDIR=$ac_pwd/
     82TOP_SRCDIR="$(readlink -f $ac_confdir/)/"
     83TOP_BUILDDIR="$(readlink -f $ac_pwd/)/"
    8484
    8585AC_DEFINE_UNQUOTED(TOP_SRCDIR, "$TOP_SRCDIR", [Top src directory])
     
    120120AC_CANONICAL_BUILD
    121121AC_CANONICAL_HOST
     122
     123if ! test "$host_cpu" = "$build_cpu"; then
     124        case $host_cpu in
     125                i386)
     126                        HOST_FLAGS="-m32"
     127                        ;;
     128                i686)
     129                        HOST_FLAGS="-m32"
     130                        ;;
     131                x86_64)
     132                        HOST_FLAGS="-m64"
     133                        ;;
     134        esac
     135fi
     136AC_SUBST(HOST_FLAGS)
    122137
    123138default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
  • driver/Makefile.am

    r0e0f128c r7b3a6e6  
    1515###############################################################################
    1616
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     18
    1719# applies to both programs
    18 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
     20AM_CXXFLAGS = @HOST_FLAGS@ -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
    1921
    2022# don't install cfa directly
  • driver/Makefile.in

    r0e0f128c r7b3a6e6  
    213213EXEEXT = @EXEEXT@
    214214GREP = @GREP@
     215HOST_FLAGS = @HOST_FLAGS@
    215216INSTALL = @INSTALL@
    216217INSTALL_DATA = @INSTALL_DATA@
     
    298299top_builddir = @top_builddir@
    299300top_srcdir = @top_srcdir@
     301AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    300302
    301303# applies to both programs
    302 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
     304AM_CXXFLAGS = @HOST_FLAGS@ -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
    303305cfa_SOURCES = cfa.cc
    304306
  • libcfa/configure

    r0e0f128c r7b3a6e6  
    25742574                cfa_prefix=${prefix}
    25752575        fi
     2576        cfa_prefix="$(readlink -f ${cfa_prefix})/"
    25762577
    25772578cat >>confdefs.h <<_ACEOF
     
    25872588                cfa_incdir=${includedir}
    25882589        fi
     2590        cfa_incdir="$(readlink -f ${cfa_incdir})/"
    25892591
    25902592cat >>confdefs.h <<_ACEOF
     
    26002602                cfa_bindir=${bindir}
    26012603        fi
     2604        cfa_bindir="$(readlink -f ${cfa_bindir})/"
    26022605
    26032606cat >>confdefs.h <<_ACEOF
     
    26172620                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    26182621        fi
     2622        cfa_libdir="$(readlink -f ${cfa_libdir})/"
    26192623
    26202624cat >>confdefs.h <<_ACEOF
  • libcfa/prelude/Makefile.am

    r0e0f128c r7b3a6e6  
    1616
    1717# create object files in directory with source files
    18 AUTOMAKE_OPTIONS = subdir-objects
     18AUTOMAKE_OPTIONS = foreign subdir-objects
    1919
    2020# put into lib for now
  • libcfa/prelude/Makefile.in

    r0e0f128c r7b3a6e6  
    259259
    260260# create object files in directory with source files
    261 AUTOMAKE_OPTIONS = subdir-objects
     261AUTOMAKE_OPTIONS = foreign subdir-objects
    262262
    263263# put into lib for now
  • src/Makefile.am

    r0e0f128c r7b3a6e6  
    1616
    1717# create object files in directory with source files
    18 AUTOMAKE_OPTIONS = subdir-objects
     18AUTOMAKE_OPTIONS = foreign subdir-objects
    1919
    2020SRC = main.cc \
     
    4848___driver_cfa_cpp_LDADD = -ldl                  # yywrap
    4949
    50 AM_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
    51 AM_LDFLAGS = -Xlinker -export-dynamic
     50AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
     51AM_LDFLAGS  = @HOST_FLAGS@ -Xlinker -export-dynamic
    5252
    5353MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
  • src/Makefile.in

    r0e0f128c r7b3a6e6  
    358358EXEEXT = @EXEEXT@
    359359GREP = @GREP@
     360HOST_FLAGS = @HOST_FLAGS@
    360361INSTALL = @INSTALL@
    361362INSTALL_DATA = @INSTALL_DATA@
     
    445446
    446447# create object files in directory with source files
    447 AUTOMAKE_OPTIONS = subdir-objects
     448AUTOMAKE_OPTIONS = foreign subdir-objects
    448449SRC = main.cc MakeLibCfa.cc CompilationState.cc CodeGen/Generate.cc \
    449450        CodeGen/CodeGenerator.cc CodeGen/GenType.cc \
     
    508509___driver_cfa_cpp_SOURCES = $(SRC)
    509510___driver_cfa_cpp_LDADD = -ldl                  # yywrap
    510 AM_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
    511 AM_LDFLAGS = -Xlinker -export-dynamic
     511AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
     512AM_LDFLAGS = @HOST_FLAGS@ -Xlinker -export-dynamic
    512513all: $(BUILT_SOURCES)
    513514        $(MAKE) $(AM_MAKEFLAGS) all-am
  • tests/.expect/math1.txt

    r0e0f128c r7b3a6e6  
    99exp2:2 2 2
    1010expm1:1.71828 1.71828182845905 1.71828182845904524
    11 pow:1 1 1 0.273957+0.583701i 0.273957253830121+0.583700758758615i 0.273957253830121071+0.583700758758614628i
     11pow:1 1 1 0.273957+0.583701i 0.273957253830121+0.583700758758615i -0.638110484918098871+0.705394566961838155i
    1212\ 16 256
    1313\ 912673 256 64 -64 0.015625 -0.015625 18.3791736799526 0.264715-1.1922i
  • tests/Makefile.am

    r0e0f128c r7b3a6e6  
    1515###############################################################################
    1616
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1718
    1819debug=yes
  • tests/Makefile.in

    r0e0f128c r7b3a6e6  
    210210EXEEXT = @EXEEXT@
    211211GREP = @GREP@
     212HOST_FLAGS = @HOST_FLAGS@
    212213INSTALL = @INSTALL@
    213214INSTALL_DATA = @INSTALL_DATA@
     
    295296top_builddir = @top_builddir@
    296297top_srcdir = @top_srcdir@
     298AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    297299debug = yes
    298300installed = no
  • tests/math1.c

    r0e0f128c r7b3a6e6  
    4141        sout | "exp2:" | exp2( 1.0F ) | exp2( 1.0D ) | exp2( 1.0L ) | endl;
    4242        sout | "expm1:" | expm1( 1.0F ) | expm1( 1.0D ) | expm1( 1.0L ) | endl;
    43         sout | "pow:" | pow( 1.0F, 1.0F ) | pow( 1.0D, 1.0D ) | pow( 1.0L, 1.0L ) | pow( 1.0F+1.0FI, 1.0F+1.0FI ) | pow( 1.0D+1.0DI, 1.0D+1.0DI ) | pow( 1.0DL+1.0LI, 1.0DL+1.0LI ) | endl;
     43        sout | "pow:" | pow( 1.0F, 1.0F ) | pow( 1.0D, 1.0D ) | pow( 1.0L, 1.0L ) | pow( 1.0F+1.0FI, 1.0F+1.0FI ) | pow( 1.0D+1.0DI, 1.0D+1.0DI ) | pow( 1.5DL+1.5LI, 1.5DL+1.5LI ) | endl;
    4444
    4545        int b = 4;
  • tests/preempt_longrun/Makefile.am

    r0e0f128c r7b3a6e6  
    1414## Update Count     : 0
    1515###############################################################################
     16
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1618
    1719repeats=10
  • tests/preempt_longrun/Makefile.in

    r0e0f128c r7b3a6e6  
    369369EXEEXT = @EXEEXT@
    370370GREP = @GREP@
     371HOST_FLAGS = @HOST_FLAGS@
    371372INSTALL = @INSTALL@
    372373INSTALL_DATA = @INSTALL_DATA@
     
    454455top_builddir = @top_builddir@
    455456top_srcdir = @top_srcdir@
     457AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    456458repeats = 10
    457459max_time = 600
  • tests/pybin/settings.py

    r0e0f128c r7b3a6e6  
    5151                        self.target = arch
    5252                        self.cross_compile = True
    53                         try :
    54                                 self.flags = Architecture.CrossCompileFlags[arch]
    55                         except KeyError:
    56                                 print("Cross compilation not available for architecture %s" % arch, file=sys.stderr)
    57                                 sys.exit(1)
    58 
    5953                else:
    6054                        self.target = canonical_host
    6155                        self.cross_compile = False
    62                         self.flags = ""
     56
     57
     58                try :
     59                        self.flags = Architecture.CrossCompileFlags[self.target]
     60                except KeyError:
     61                        print("Cross compilation not available for architecture %s" % self.target, file=sys.stderr)
     62                        sys.exit(1)
    6363
    6464                self.string = self.target
  • tests/time.c

    r0e0f128c r7b3a6e6  
    1818
    1919int main() {
    20         Duration d1 = 3`h, d2 = 2`s, d3 = 3.07`s, d4 = 12`s, d5 = 1`s + 10_000`ns;
     20        Duration d1 = 3`h, d2 = 2`s, d3 = 3.375`s, d4 = 12`s, d5 = 1`s + 10_000`ns;
    2121        sout | d1 | d2 | d3 | d4 | d5 | endl;
    2222        int i;
  • tools/Makefile.am

    r0e0f128c r7b3a6e6  
    1515###############################################################################
    1616
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     18
    1719CC = @BACKEND_CC@
    18 CFLAGS = -Wall -Wextra -O2 -g
     20AM_CFLAGS = -Wall -Wextra -O2 -g
    1921
    2022noinst_PROGRAMS = busy catchsig repeat watchdog
  • tools/Makefile.in

    r0e0f128c r7b3a6e6  
    202202CFA_NAME = @CFA_NAME@
    203203CFA_PREFIX = @CFA_PREFIX@
    204 CFLAGS = -Wall -Wextra -O2 -g
     204CFLAGS = @CFLAGS@
    205205CPP = @CPP@
    206206CPPFLAGS = @CPPFLAGS@
     
    218218EXEEXT = @EXEEXT@
    219219GREP = @GREP@
     220HOST_FLAGS = @HOST_FLAGS@
    220221INSTALL = @INSTALL@
    221222INSTALL_DATA = @INSTALL_DATA@
     
    303304top_builddir = @top_builddir@
    304305top_srcdir = @top_srcdir@
     306AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     307AM_CFLAGS = -Wall -Wextra -O2 -g
    305308busy_SOURCES = busy.c
    306309busy_LDFLAGS = -pthread
  • tools/prettyprinter/Makefile.am

    r0e0f128c r7b3a6e6  
    11######################## -*- Mode: Makefile-Automake -*- ######################
    2 ## 
     2##
    33## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
    44##
    55## The contents of this file are covered under the licence agreement in the
    66## file "LICENCE" distributed with Cforall.
    7 ## 
    8 ## Makefile.am -- 
    9 ## 
     7##
     8## Makefile.am --
     9##
    1010## Author           : Peter A. Buhr
    1111## Created On       : Wed Jun 28 12:07:10 2017
     
    1414## Update Count     : 20
    1515###############################################################################
     16
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1618
    1719BUILT_SOURCES = parser.hh
  • tools/prettyprinter/Makefile.in

    r0e0f128c r7b3a6e6  
    242242EXEEXT = @EXEEXT@
    243243GREP = @GREP@
     244HOST_FLAGS = @HOST_FLAGS@
    244245INSTALL = @INSTALL@
    245246INSTALL_DATA = @INSTALL_DATA@
     
    327328top_builddir = @top_builddir@
    328329top_srcdir = @top_srcdir@
     330AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    329331BUILT_SOURCES = parser.hh
    330332AM_YFLAGS = -d -t -v
Note: See TracChangeset for help on using the changeset viewer.