Changeset 0c1b566


Ignore:
Timestamp:
Aug 10, 2018, 3:40:47 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
2ea0a8a
Parents:
ea5b7d6
Message:

Fixed missing foreign options and tentative fix for TOP directories defines

Files:
17 edited

Legend:

Unmodified
Added
Removed
  • benchmark/Makefile.am

    rea5b7d6 r0c1b566  
    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

    rea5b7d6 r0c1b566  
    253253top_builddir = @top_builddir@
    254254top_srcdir = @top_srcdir@
     255AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    255256CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS)
    256257AM_V_CFA = $(am__v_CFA_@AM_V@)
  • configure

    rea5b7d6 r0c1b566  
    32893289# Create variables for commonly used targets
    32903290
    3291 TOP_SRCDIR=$ac_pwd/$ac_confdir/
    3292 TOP_BUILDDIR=$ac_pwd/
     3291TOP_SRCDIR=$(readlink -f $ac_confdir/)
     3292TOP_BUILDDIR=$(readlink -f $ac_pwd/)
     3293
     3294echo ${TOP_SRCDIR}
     3295echo ${TOP_BUILDDIR}
    32933296
    32943297
  • configure.ac

    rea5b7d6 r0c1b566  
    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/)
     84
     85echo ${TOP_SRCDIR}
     86echo ${TOP_BUILDDIR}
    8487
    8588AC_DEFINE_UNQUOTED(TOP_SRCDIR, "$TOP_SRCDIR", [Top src directory])
  • driver/Makefile.am

    rea5b7d6 r0c1b566  
    1414## Update Count     : 14
    1515###############################################################################
     16
     17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    1618
    1719# applies to both programs
  • driver/Makefile.in

    rea5b7d6 r0c1b566  
    298298top_builddir = @top_builddir@
    299299top_srcdir = @top_srcdir@
     300AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    300301
    301302# applies to both programs
  • libcfa/prelude/Makefile.am

    rea5b7d6 r0c1b566  
    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
  • src/Makefile.am

    rea5b7d6 r0c1b566  
    1616
    1717# create object files in directory with source files
    18 AUTOMAKE_OPTIONS = subdir-objects
     18AUTOMAKE_OPTIONS = foreign subdir-objects
    1919
    2020SRC = main.cc \
  • src/Makefile.in

    rea5b7d6 r0c1b566  
    445445
    446446# create object files in directory with source files
    447 AUTOMAKE_OPTIONS = subdir-objects
     447AUTOMAKE_OPTIONS = foreign subdir-objects
    448448SRC = main.cc MakeLibCfa.cc CompilationState.cc CodeGen/Generate.cc \
    449449        CodeGen/CodeGenerator.cc CodeGen/GenType.cc \
  • tests/Makefile.am

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

    rea5b7d6 r0c1b566  
    295295top_builddir = @top_builddir@
    296296top_srcdir = @top_srcdir@
     297AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    297298debug = yes
    298299installed = no
  • tests/preempt_longrun/Makefile.am

    rea5b7d6 r0c1b566  
    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

    rea5b7d6 r0c1b566  
    454454top_builddir = @top_builddir@
    455455top_srcdir = @top_srcdir@
     456AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    456457repeats = 10
    457458max_time = 600
  • tools/Makefile.am

    rea5b7d6 r0c1b566  
    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

    rea5b7d6 r0c1b566  
    202202CFA_NAME = @CFA_NAME@
    203203CFA_PREFIX = @CFA_PREFIX@
    204 CFLAGS = -Wall -Wextra -O2 -g
     204CFLAGS = @CFLAGS@
    205205CPP = @CPP@
    206206CPPFLAGS = @CPPFLAGS@
     
    303303top_builddir = @top_builddir@
    304304top_srcdir = @top_srcdir@
     305AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     306AM_CFLAGS = -Wall -Wextra -O2 -g
    305307busy_SOURCES = busy.c
    306308busy_LDFLAGS = -pthread
  • tools/prettyprinter/Makefile.am

    rea5b7d6 r0c1b566  
    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

    rea5b7d6 r0c1b566  
    327327top_builddir = @top_builddir@
    328328top_srcdir = @top_srcdir@
     329AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    329330BUILT_SOURCES = parser.hh
    330331AM_YFLAGS = -d -t -v
Note: See TracChangeset for help on using the changeset viewer.