Changeset 937e51d for Makefile.in


Ignore:
Timestamp:
Jun 26, 2015, 4:00:26 PM (11 years ago)
Author:
Aaron Moss <a3moss@…>
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, stuck-waitfor-destruct, with_gc
Children:
0df292b, e0ff3e6
Parents:
eb50842 (diff), 1869adf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge pointer to pointer to qualified fix into master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    reb50842 r937e51d  
    1515
    1616@SET_MAKE@
     17
     18######################## -*- Mode: Makefile-Automake -*- ######################
     19###############################################################################
    1720VPATH = @srcdir@
    1821pkgdatadir = $(datadir)/@PACKAGE@
     
    3538DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
    3639        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
    37         $(top_srcdir)/configure $(top_srcdir)/driver/Makefile.in \
    38         $(top_srcdir)/libcfa/Makefile.in $(top_srcdir)/src/Makefile.in \
    39         $(top_srcdir)/src/examples/Makefile.in AUTHORS INSTALL TODO \
    40         install-sh missing mkinstalldirs
     40        $(top_srcdir)/configure INSTALL automake/compile \
     41        automake/depcomp automake/install-sh automake/missing \
     42        automake/ylwrap
    4143ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
    42 am__aclocal_m4_deps = $(top_srcdir)/configure.in
     44am__aclocal_m4_deps = $(top_srcdir)/configure.ac
    4345am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
    4446        $(ACLOCAL_M4)
    4547am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
    4648 configure.lineno config.status.lineno
    47 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
     49mkinstalldirs = $(install_sh) -d
    4850CONFIG_HEADER = config.h
    49 CONFIG_CLEAN_FILES = src/Makefile driver/Makefile libcfa/Makefile \
    50         src/examples/Makefile
     51CONFIG_CLEAN_FILES =
    5152CONFIG_CLEAN_VPATH_FILES =
    5253SOURCES =
     
    108109distcleancheck_listfiles = find . -type f -print
    109110ACLOCAL = @ACLOCAL@
     111ALLOCA = @ALLOCA@
    110112AMTAR = @AMTAR@
    111113AUTOCONF = @AUTOCONF@
     
    113115AUTOMAKE = @AUTOMAKE@
    114116AWK = @AWK@
    115 BACKEND_CC = @BACKEND_CC@
     117BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
    116118CC = @CC@
    117119CCDEPMODE = @CCDEPMODE@
     
    123125CPP = @CPP@
    124126CPPFLAGS = @CPPFLAGS@
    125 CPP_PATH = @CPP_PATH@
    126127CXX = @CXX@
    127128CXXDEPMODE = @CXXDEPMODE@
     
    149150LIBS = @LIBS@
    150151LTLIBOBJS = @LTLIBOBJS@
     152MAINT = @MAINT@
    151153MAKEINFO = @MAKEINFO@
    152154MKDIR_P = @MKDIR_P@
     
    160162PACKAGE_VERSION = @PACKAGE_VERSION@
    161163PATH_SEPARATOR = @PATH_SEPARATOR@
     164RANLIB = @RANLIB@
    162165SET_MAKE = @SET_MAKE@
    163166SHELL = @SHELL@
     
    199202pdfdir = @pdfdir@
    200203prefix = @prefix@
    201 preludedir = @preludedir@
    202204program_transform_name = @program_transform_name@
    203205psdir = @psdir@
     
    210212top_builddir = @top_builddir@
    211213top_srcdir = @top_srcdir@
    212 SUBDIRS = driver libcfa src
    213 
    214 # non-source files
    215 EXTRA_DIST = Docs
     214AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
     215SUBDIRS = src/driver src src/libcfa     # order important, src before libcfa because cfa-cpp used to build prelude
     216EXTRA_DIST = Docs                       # non-source files
    216217all: config.h
    217218        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    220221am--refresh: Makefile
    221222        @:
    222 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am  $(am__configure_deps)
     223$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
    223224        @for dep in $?; do \
    224225          case '$(am__configure_deps)' in \
     
    247248        $(SHELL) ./config.status --recheck
    248249
    249 $(top_srcdir)/configure: $(am__configure_deps)
     250$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
    250251        $(am__cd) $(srcdir) && $(AUTOCONF)
    251 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
     252$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
    252253        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
    253254$(am__aclocal_m4_deps):
     
    260261        @rm -f stamp-h1
    261262        cd $(top_builddir) && $(SHELL) ./config.status config.h
    262 $(srcdir)/config.h.in: $(am__configure_deps)
     263$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
    263264        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
    264265        rm -f stamp-h1
     
    267268distclean-hdr:
    268269        -rm -f config.h stamp-h1
    269 src/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/Makefile.in
    270         cd $(top_builddir) && $(SHELL) ./config.status $@
    271 driver/Makefile: $(top_builddir)/config.status $(top_srcdir)/driver/Makefile.in
    272         cd $(top_builddir) && $(SHELL) ./config.status $@
    273 libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in
    274         cd $(top_builddir) && $(SHELL) ./config.status $@
    275 src/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/examples/Makefile.in
    276         cd $(top_builddir) && $(SHELL) ./config.status $@
    277270
    278271# This directory's subdirectories are mostly independent; you can cd
Note: See TracChangeset for help on using the changeset viewer.