Changeset 90152a4 for Makefile.in
- Timestamp:
- Aug 27, 2018, 4:40:34 PM (8 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- b7c89aa
- Parents:
- f9feab8 (diff), 305581d (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) (18 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
rf9feab8 r90152a4 17 17 ######################## -*- Mode: Makefile-Automake -*- ###################### 18 18 ############################################################################### 19 19 20 VPATH = @srcdir@ 20 21 am__is_gnu_make = { \ … … 93 94 subdir = . 94 95 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 95 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 97 $(top_srcdir)/configure.ac 96 98 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 97 99 $(ACLOCAL_M4) … … 162 164 NROFF = nroff 163 165 MANS = $(man1_MANS) 166 DATA = $(noinst_DATA) 164 167 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ 165 168 distclean-recursive maintainer-clean-recursive … … 170 173 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ 171 174 cscope distdir dist dist-all distcheck 172 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ 173 $(LISP)config.h.in 175 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) 174 176 # Read a list of newline-separated strings from the standard input, 175 177 # and print each of them once, without duplicates. Input order is … … 192 194 CSCOPE = cscope 193 195 DIST_SUBDIRS = $(SUBDIRS) 194 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ 195 $(top_srcdir)/automake/compile \ 196 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/automake/compile \ 196 197 $(top_srcdir)/automake/config.guess \ 197 198 $(top_srcdir)/automake/config.sub \ 198 199 $(top_srcdir)/automake/install-sh \ 199 $(top_srcdir)/automake/missing INSTALL README automake/compile \ 200 automake/config.guess automake/config.sub automake/depcomp \ 201 automake/install-sh automake/missing automake/ylwrap 200 $(top_srcdir)/automake/missing $(top_srcdir)/src/config.h.in \ 201 INSTALL README automake/compile automake/config.guess \ 202 automake/config.sub automake/depcomp automake/install-sh \ 203 automake/missing automake/ylwrap 202 204 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 203 205 distdir = $(PACKAGE)-$(VERSION) … … 250 252 AUTOMAKE = @AUTOMAKE@ 251 253 AWK = @AWK@ 252 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 254 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 255 BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@ 253 256 CC = @CC@ 254 257 CCAS = @CCAS@ … … 256 259 CCASFLAGS = @CCASFLAGS@ 257 260 CCDEPMODE = @CCDEPMODE@ 261 CFACC = @CFACC@ 262 CFACPP = @CFACPP@ 258 263 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 259 264 CFA_BINDIR = @CFA_BINDIR@ … … 272 277 DEFS = @DEFS@ 273 278 DEPDIR = @DEPDIR@ 279 DRIVER_DIR = @DRIVER_DIR@ 274 280 ECHO_C = @ECHO_C@ 275 281 ECHO_N = @ECHO_N@ … … 278 284 EXEEXT = @EXEEXT@ 279 285 GREP = @GREP@ 286 HOST_FLAGS = @HOST_FLAGS@ 280 287 INSTALL = @INSTALL@ 281 288 INSTALL_DATA = @INSTALL_DATA@ … … 287 294 LEXLIB = @LEXLIB@ 288 295 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 296 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@ 297 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@ 289 298 LIBOBJS = @LIBOBJS@ 290 299 LIBS = @LIBS@ 291 300 LTLIBOBJS = @LTLIBOBJS@ 292 MACHINE_TYPE = @MACHINE_TYPE@293 MAINT = @MAINT@294 301 MAKEINFO = @MAKEINFO@ 295 302 MKDIR_P = @MKDIR_P@ … … 307 314 SHELL = @SHELL@ 308 315 STRIP = @STRIP@ 316 TARGET_HOSTS = @TARGET_HOSTS@ 309 317 VERSION = @VERSION@ 310 318 YACC = @YACC@ … … 362 370 top_builddir = @top_builddir@ 363 371 top_srcdir = @top_srcdir@ 364 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names365 SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude 366 EXTRA_DIST = Docs # non-source files 367 MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/* 372 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 373 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 374 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 375 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@ 368 376 man1_MANS = doc/man/cfa.1 377 debug = yes 369 378 all: config.h 370 379 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 373 382 am--refresh: Makefile 374 383 @: 375 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@$(srcdir)/Makefile.am $(am__configure_deps)384 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 376 385 @for dep in $?; do \ 377 386 case '$(am__configure_deps)' in \ … … 399 408 $(SHELL) ./config.status --recheck 400 409 401 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@$(am__configure_deps)410 $(top_srcdir)/configure: $(am__configure_deps) 402 411 $(am__cd) $(srcdir) && $(AUTOCONF) 403 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@$(am__aclocal_m4_deps)412 $(ACLOCAL_M4): $(am__aclocal_m4_deps) 404 413 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 405 414 $(am__aclocal_m4_deps): … … 409 418 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 410 419 411 stamp-h1: $( srcdir)/config.h.in $(top_builddir)/config.status420 stamp-h1: $(top_srcdir)/src/config.h.in $(top_builddir)/config.status 412 421 @rm -f stamp-h1 413 422 cd $(top_builddir) && $(SHELL) ./config.status config.h 414 $( srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@$(am__configure_deps)423 $(top_srcdir)/src/config.h.in: $(am__configure_deps) 415 424 ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) 416 425 rm -f stamp-h1 … … 757 766 check-am: all-am 758 767 check: check-recursive 759 all-am: Makefile $(MANS) config.h768 all-am: Makefile $(MANS) $(DATA) config.h 760 769 installdirs: installdirs-recursive 761 770 installdirs-am: … … 770 779 install-am: all-am 771 780 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 772 773 installcheck: installcheck-recursive774 781 install-strip: 775 782 if test -z '$(STRIP)'; then \ … … 885 892 .PRECIOUS: Makefile 886 893 894 # order important 895 896 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure 897 @$(eval config_file = $(dir $@)config.data) 898 @ls $(config_file) || (echo "Missing config.data, re-run configure script again" && false) 899 @$(eval config_data = $(shell cat $(config_file))) 900 @echo "Configuring libcfa with '$(config_data)''" 901 @cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(config_data) 902 check: 903 $(MAKE) -C tests all-tests installed=no debug=${debug} 904 905 installcheck: 906 $(MAKE) -C tests all-tests installed=yes debug=${debug} 907 908 status: @LIBCFA_TARGET_MAKEFILES@ 909 @echo -ne "translator\n\t" 910 @./config.status --config | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 911 @find libcfa -name config.status -printf "\n%h\n\t" -exec {} --config \; | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 887 912 888 913 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note:
See TracChangeset
for help on using the changeset viewer.