Changeset 937e51d for Makefile.in
- Timestamp:
- Jun 26, 2015, 4:00:26 PM (11 years ago)
- 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. - File:
-
- 1 edited
-
Makefile.in (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
reb50842 r937e51d 15 15 16 16 @SET_MAKE@ 17 18 ######################## -*- Mode: Makefile-Automake -*- ###################### 19 ############################################################################### 17 20 VPATH = @srcdir@ 18 21 pkgdatadir = $(datadir)/@PACKAGE@ … … 35 38 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ 36 39 $(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 41 43 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 42 am__aclocal_m4_deps = $(top_srcdir)/configure. in44 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 43 45 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 44 46 $(ACLOCAL_M4) 45 47 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ 46 48 configure.lineno config.status.lineno 47 mkinstalldirs = $( SHELL) $(top_srcdir)/mkinstalldirs49 mkinstalldirs = $(install_sh) -d 48 50 CONFIG_HEADER = config.h 49 CONFIG_CLEAN_FILES = src/Makefile driver/Makefile libcfa/Makefile \ 50 src/examples/Makefile 51 CONFIG_CLEAN_FILES = 51 52 CONFIG_CLEAN_VPATH_FILES = 52 53 SOURCES = … … 108 109 distcleancheck_listfiles = find . -type f -print 109 110 ACLOCAL = @ACLOCAL@ 111 ALLOCA = @ALLOCA@ 110 112 AMTAR = @AMTAR@ 111 113 AUTOCONF = @AUTOCONF@ … … 113 115 AUTOMAKE = @AUTOMAKE@ 114 116 AWK = @AWK@ 115 BACKEND_CC = @BACKEND_CC@ 117 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 116 118 CC = @CC@ 117 119 CCDEPMODE = @CCDEPMODE@ … … 123 125 CPP = @CPP@ 124 126 CPPFLAGS = @CPPFLAGS@ 125 CPP_PATH = @CPP_PATH@126 127 CXX = @CXX@ 127 128 CXXDEPMODE = @CXXDEPMODE@ … … 149 150 LIBS = @LIBS@ 150 151 LTLIBOBJS = @LTLIBOBJS@ 152 MAINT = @MAINT@ 151 153 MAKEINFO = @MAKEINFO@ 152 154 MKDIR_P = @MKDIR_P@ … … 160 162 PACKAGE_VERSION = @PACKAGE_VERSION@ 161 163 PATH_SEPARATOR = @PATH_SEPARATOR@ 164 RANLIB = @RANLIB@ 162 165 SET_MAKE = @SET_MAKE@ 163 166 SHELL = @SHELL@ … … 199 202 pdfdir = @pdfdir@ 200 203 prefix = @prefix@ 201 preludedir = @preludedir@202 204 program_transform_name = @program_transform_name@ 203 205 psdir = @psdir@ … … 210 212 top_builddir = @top_builddir@ 211 213 top_srcdir = @top_srcdir@ 212 SUBDIRS = driver libcfa src 213 214 # non-source files 215 EXTRA_DIST = Docs 214 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 215 SUBDIRS = src/driver src src/libcfa # order important, src before libcfa because cfa-cpp used to build prelude 216 EXTRA_DIST = Docs # non-source files 216 217 all: config.h 217 218 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 220 221 am--refresh: Makefile 221 222 @: 222 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)223 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 223 224 @for dep in $?; do \ 224 225 case '$(am__configure_deps)' in \ … … 247 248 $(SHELL) ./config.status --recheck 248 249 249 $(top_srcdir)/configure: $(am__configure_deps)250 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 250 251 $(am__cd) $(srcdir) && $(AUTOCONF) 251 $(ACLOCAL_M4): $(am__aclocal_m4_deps)252 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 252 253 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 253 254 $(am__aclocal_m4_deps): … … 260 261 @rm -f stamp-h1 261 262 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) 263 264 ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) 264 265 rm -f stamp-h1 … … 267 268 distclean-hdr: 268 269 -rm -f config.h stamp-h1 269 src/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/Makefile.in270 cd $(top_builddir) && $(SHELL) ./config.status $@271 driver/Makefile: $(top_builddir)/config.status $(top_srcdir)/driver/Makefile.in272 cd $(top_builddir) && $(SHELL) ./config.status $@273 libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in274 cd $(top_builddir) && $(SHELL) ./config.status $@275 src/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/examples/Makefile.in276 cd $(top_builddir) && $(SHELL) ./config.status $@277 270 278 271 # This directory's subdirectories are mostly independent; you can cd
Note:
See TracChangeset
for help on using the changeset viewer.