Changes in / [7b3a6e6:0e0f128c]


Ignore:
Files:
7 added
4 deleted
27 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

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

    r7b3a6e6 r0e0f128c  
    277277                        //Use the current directory as the installation target so nothing escapes the sandbox
    278278                        //Also specify the compiler by hand
    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"
     279                        sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --enable-silent-rules --quiet"
    287280
    288281                        //Compile the project
     
    298291                        //Run the tests from the tests directory
    299292                        if ( do_alltests ) {
    300                                 sh 'make --no-print-directory -C tests all-tests debug=yes'
    301                                 sh 'make --no-print-directory -C tests all-tests debug=no '
     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 '
    302295                        }
    303296                        else {
    304                                 sh 'make --no-print-directory -C tests'
     297                                sh 'make --no-print-directory -C src/tests'
    305298                        }
    306299                }
     
    315308                dir (builddir) {
    316309                        //Append bench results
    317                         sh "make --no-print-directory -C benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
     310                        sh "make --no-print-directory -C src/benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"
    318311                }
    319312        }
     
    348341//Routine responsible of sending the email notification once the build is completed
    349342//===========================================================================================================
    350 def 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 
    366 def output=readFile('result').trim()
    367 echo "output=$output";
    368 }
    369 
    370343//Standard build email notification
    371344def email(String status, boolean log, boolean bIsSandbox) {
     
    376349        def gitLog = 'Error retrieving git logs'
    377350        def gitDiff = 'Error retrieving git diff'
    378         def gitUpdate = 'Error retrieving update'
    379351
    380352        try {
    381                 gitUpdate = gitBranchUpdate(gitRefOldValue, gitRefNewValue)
    382353
    383354                sh "git rev-list --format=short ${gitRefOldValue}...${gitRefNewValue} > GIT_LOG"
     
    387358                gitDiff = readFile('GIT_DIFF')
    388359        }
    389         catch (Exception error) {
    390                 echo error.toString()
    391                 echo error.getMessage()
    392         }
     360        catch (Exception error) {}
    393361
    394362        def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}"
     
    399367
    400368The branch ${env.BRANCH_NAME} has been updated.
    401 ${gitUpdate}
     369   via  ${gitRefOldValue} (commit)
     370  from  ${gitRefNewValue} (commit)
    402371
    403372Check console output at ${env.BUILD_URL} to view the results.
  • Makefile.in

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

    r7b3a6e6 r0e0f128c  
    66                cfa_prefix=${prefix}
    77        fi
    8         cfa_prefix="$(readlink -f ${cfa_prefix})/"
    98        AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.])
    109        AC_SUBST(CFA_PREFIX, ${cfa_prefix})
     
    1514                cfa_incdir=${includedir}
    1615        fi
    17         cfa_incdir="$(readlink -f ${cfa_incdir})/"
    1816        AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.])
    1917        AC_SUBST(CFA_INCDIR, ${cfa_incdir})
     
    2422                cfa_bindir=${bindir}
    2523        fi
    26         cfa_bindir="$(readlink -f ${cfa_bindir})/"
    2724        AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.])
    2825        AC_SUBST(CFA_BINDIR, ${cfa_bindir})
     
    3734                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    3835        fi
    39         cfa_libdir="$(readlink -f ${cfa_libdir})/"
    4036        AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.])
    4137        AC_SUBST(CFA_LIBDIR, ${cfa_libdir})
     
    5854AC_DEFUN([M4CFA_CANNON_CPU], [
    5955        case $arch_name in
    60                 "host") arch_name=${host_cpu};;
    61                 *) ;;
    62         esac
    63 
    64         case $arch_name in
    6556                "x64"        ) cannon_arch_name="x64";;
    6657                "x86-64"     ) cannon_arch_name="x64";;
  • benchmark/Makefile.am

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

    r7b3a6e6 r0e0f128c  
    168168EXEEXT = @EXEEXT@
    169169GREP = @GREP@
    170 HOST_FLAGS = @HOST_FLAGS@
    171170INSTALL = @INSTALL@
    172171INSTALL_DATA = @INSTALL_DATA@
     
    254253top_builddir = @top_builddir@
    255254top_srcdir = @top_srcdir@
    256 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    257255CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS)
    258256AM_V_CFA = $(am__v_CFA_@AM_V@)
  • configure

    r7b3a6e6 r0e0f128c  
    668668LIBCFA_TARGET_DIRS
    669669TARGET_HOSTS
    670 HOST_FLAGS
    671670host_os
    672671host_vendor
     
    32353234                cfa_prefix=${prefix}
    32363235        fi
    3237         cfa_prefix="$(readlink -f ${cfa_prefix})/"
    32383236
    32393237cat >>confdefs.h <<_ACEOF
     
    32493247                cfa_incdir=${includedir}
    32503248        fi
    3251         cfa_incdir="$(readlink -f ${cfa_incdir})/"
    32523249
    32533250cat >>confdefs.h <<_ACEOF
     
    32633260                cfa_bindir=${bindir}
    32643261        fi
    3265         cfa_bindir="$(readlink -f ${cfa_bindir})/"
    32663262
    32673263cat >>confdefs.h <<_ACEOF
     
    32813277                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    32823278        fi
    3283         cfa_libdir="$(readlink -f ${cfa_libdir})/"
    32843279
    32853280cat >>confdefs.h <<_ACEOF
     
    32943289# Create variables for commonly used targets
    32953290
    3296 TOP_SRCDIR="$(readlink -f $ac_confdir/)/"
    3297 TOP_BUILDDIR="$(readlink -f $ac_pwd/)/"
     3291TOP_SRCDIR=$ac_pwd/$ac_confdir/
     3292TOP_BUILDDIR=$ac_pwd/
    32983293
    32993294
     
    34123407
    34133408
    3414 if ! 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
    3426 fi
    3427 
    3428 
    34293409default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
    34303410
     
    34583438        esac
    34593439
    3460 
    3461         case $arch_name in
    3462                 "host") arch_name=${host_cpu};;
    3463                 *) ;;
    3464         esac
    34653440
    34663441        case $arch_name in
     
    34973472
    34983473
    3499 
    3500         case $arch_name in
    3501                 "host") arch_name=${host_cpu};;
    3502                 *) ;;
    3503         esac
    35043474
    35053475        case $arch_name in
  • configure.ac

    r7b3a6e6 r0e0f128c  
    8080# Create variables for commonly used targets
    8181
    82 TOP_SRCDIR="$(readlink -f $ac_confdir/)/"
    83 TOP_BUILDDIR="$(readlink -f $ac_pwd/)/"
     82TOP_SRCDIR=$ac_pwd/$ac_confdir/
     83TOP_BUILDDIR=$ac_pwd/
    8484
    8585AC_DEFINE_UNQUOTED(TOP_SRCDIR, "$TOP_SRCDIR", [Top src directory])
     
    120120AC_CANONICAL_BUILD
    121121AC_CANONICAL_HOST
    122 
    123 if ! 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
    135 fi
    136 AC_SUBST(HOST_FLAGS)
    137122
    138123default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
  • driver/Makefile.am

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

    r7b3a6e6 r0e0f128c  
    213213EXEEXT = @EXEEXT@
    214214GREP = @GREP@
    215 HOST_FLAGS = @HOST_FLAGS@
    216215INSTALL = @INSTALL@
    217216INSTALL_DATA = @INSTALL_DATA@
     
    299298top_builddir = @top_builddir@
    300299top_srcdir = @top_srcdir@
    301 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    302300
    303301# applies to both programs
    304 AM_CXXFLAGS = @HOST_FLAGS@ -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
     302AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
    305303cfa_SOURCES = cfa.cc
    306304
  • libcfa/configure

    r7b3a6e6 r0e0f128c  
    25742574                cfa_prefix=${prefix}
    25752575        fi
    2576         cfa_prefix="$(readlink -f ${cfa_prefix})/"
    25772576
    25782577cat >>confdefs.h <<_ACEOF
     
    25882587                cfa_incdir=${includedir}
    25892588        fi
    2590         cfa_incdir="$(readlink -f ${cfa_incdir})/"
    25912589
    25922590cat >>confdefs.h <<_ACEOF
     
    26022600                cfa_bindir=${bindir}
    26032601        fi
    2604         cfa_bindir="$(readlink -f ${cfa_bindir})/"
    26052602
    26062603cat >>confdefs.h <<_ACEOF
     
    26202617                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    26212618        fi
    2622         cfa_libdir="$(readlink -f ${cfa_libdir})/"
    26232619
    26242620cat >>confdefs.h <<_ACEOF
  • libcfa/prelude/Makefile.am

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

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

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

    r7b3a6e6 r0e0f128c  
    358358EXEEXT = @EXEEXT@
    359359GREP = @GREP@
    360 HOST_FLAGS = @HOST_FLAGS@
    361360INSTALL = @INSTALL@
    362361INSTALL_DATA = @INSTALL_DATA@
     
    446445
    447446# create object files in directory with source files
    448 AUTOMAKE_OPTIONS = foreign subdir-objects
     447AUTOMAKE_OPTIONS = subdir-objects
    449448SRC = main.cc MakeLibCfa.cc CompilationState.cc CodeGen/Generate.cc \
    450449        CodeGen/CodeGenerator.cc CodeGen/GenType.cc \
     
    509508___driver_cfa_cpp_SOURCES = $(SRC)
    510509___driver_cfa_cpp_LDADD = -ldl                  # yywrap
    511 AM_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
    512 AM_LDFLAGS = @HOST_FLAGS@ -Xlinker -export-dynamic
     510AM_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
     511AM_LDFLAGS = -Xlinker -export-dynamic
    513512all: $(BUILT_SOURCES)
    514513        $(MAKE) $(AM_MAKEFLAGS) all-am
  • tests/.expect/math1.txt

    r7b3a6e6 r0e0f128c  
    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.638110484918098871+0.705394566961838155i
     11pow:1 1 1 0.273957+0.583701i 0.273957253830121+0.583700758758615i 0.273957253830121071+0.583700758758614628i
    1212\ 16 256
    1313\ 912673 256 64 -64 0.015625 -0.015625 18.3791736799526 0.264715-1.1922i
  • tests/Makefile.am

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

    r7b3a6e6 r0e0f128c  
    210210EXEEXT = @EXEEXT@
    211211GREP = @GREP@
    212 HOST_FLAGS = @HOST_FLAGS@
    213212INSTALL = @INSTALL@
    214213INSTALL_DATA = @INSTALL_DATA@
     
    296295top_builddir = @top_builddir@
    297296top_srcdir = @top_srcdir@
    298 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    299297debug = yes
    300298installed = no
  • tests/math1.c

    r7b3a6e6 r0e0f128c  
    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.5DL+1.5LI, 1.5DL+1.5LI ) | 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;
    4444
    4545        int b = 4;
  • tests/preempt_longrun/Makefile.am

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

    r7b3a6e6 r0e0f128c  
    369369EXEEXT = @EXEEXT@
    370370GREP = @GREP@
    371 HOST_FLAGS = @HOST_FLAGS@
    372371INSTALL = @INSTALL@
    373372INSTALL_DATA = @INSTALL_DATA@
     
    455454top_builddir = @top_builddir@
    456455top_srcdir = @top_srcdir@
    457 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    458456repeats = 10
    459457max_time = 600
  • tests/pybin/settings.py

    r7b3a6e6 r0e0f128c  
    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
    5359                else:
    5460                        self.target = canonical_host
    5561                        self.cross_compile = False
    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)
     62                        self.flags = ""
    6363
    6464                self.string = self.target
  • tests/time.c

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

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

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

    r7b3a6e6 r0e0f128c  
    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 
    17 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1816
    1917BUILT_SOURCES = parser.hh
  • tools/prettyprinter/Makefile.in

    r7b3a6e6 r0e0f128c  
    242242EXEEXT = @EXEEXT@
    243243GREP = @GREP@
    244 HOST_FLAGS = @HOST_FLAGS@
    245244INSTALL = @INSTALL@
    246245INSTALL_DATA = @INSTALL_DATA@
     
    328327top_builddir = @top_builddir@
    329328top_srcdir = @top_srcdir@
    330 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    331329BUILT_SOURCES = parser.hh
    332330AM_YFLAGS = -d -t -v
Note: See TracChangeset for help on using the changeset viewer.