Changeset 455a7d5 for Makefile.in
- Timestamp:
- Aug 9, 2018, 6:35:02 PM (8 years ago)
- 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, stuck-waitfor-destruct
- Children:
- ea5b7d6
- Parents:
- fb975a50 (diff), 0c827019 (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) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
rfb975a50 r455a7d5 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 … … 249 252 AUTOMAKE = @AUTOMAKE@ 250 253 AWK = @AWK@ 251 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@ 252 256 CC = @CC@ 253 257 CCAS = @CCAS@ … … 255 259 CCASFLAGS = @CCASFLAGS@ 256 260 CCDEPMODE = @CCDEPMODE@ 261 CFACC = @CFACC@ 262 CFACPP = @CFACPP@ 257 263 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 258 264 CFA_BINDIR = @CFA_BINDIR@ … … 271 277 DEFS = @DEFS@ 272 278 DEPDIR = @DEPDIR@ 279 DRIVER_DIR = @DRIVER_DIR@ 273 280 ECHO_C = @ECHO_C@ 274 281 ECHO_N = @ECHO_N@ … … 286 293 LEXLIB = @LEXLIB@ 287 294 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 295 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@ 296 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@ 288 297 LIBOBJS = @LIBOBJS@ 289 298 LIBS = @LIBS@ 290 299 LTLIBOBJS = @LTLIBOBJS@ 291 MACHINE_TYPE = @MACHINE_TYPE@292 300 MAKEINFO = @MAKEINFO@ 293 301 MKDIR_P = @MKDIR_P@ … … 305 313 SHELL = @SHELL@ 306 314 STRIP = @STRIP@ 315 TARGET_HOSTS = @TARGET_HOSTS@ 307 316 VERSION = @VERSION@ 308 317 YACC = @YACC@ … … 360 369 top_builddir = @top_builddir@ 361 370 top_srcdir = @top_srcdir@ 362 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names363 SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude 364 EXTRA_DIST = Docs # non-source files 365 MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/* 371 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 372 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 373 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 374 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@ 366 375 man1_MANS = doc/man/cfa.1 376 debug = yes 367 377 all: config.h 368 378 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 755 765 check-am: all-am 756 766 check: check-recursive 757 all-am: Makefile $(MANS) config.h767 all-am: Makefile $(MANS) $(DATA) config.h 758 768 installdirs: installdirs-recursive 759 769 installdirs-am: … … 768 778 install-am: all-am 769 779 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 770 771 installcheck: installcheck-recursive772 780 install-strip: 773 781 if test -z '$(STRIP)'; then \ … … 883 891 .PRECIOUS: Makefile 884 892 893 # order important 894 895 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure 896 @$(eval config_file = $(dir $@)config.data) 897 @ls $(config_file) || (echo "Missing config.data, re-run configure script again" && false) 898 @$(eval config_data = $(shell cat $(config_file))) 899 @echo "Configuring libcfa with '$(config_data)''" 900 @cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(config_data) 901 check: 902 $(MAKE) -C tests all-tests installed=no debug=${debug} 903 904 installcheck: 905 $(MAKE) -C tests all-tests installed=yes debug=${debug} 906 907 status: @LIBCFA_TARGET_MAKEFILES@ 908 @echo -ne "translator\n\t" 909 @./config.status --config | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 910 @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" 885 911 886 912 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note:
See TracChangeset
for help on using the changeset viewer.