Changeset c59712e for Makefile.in
- Timestamp:
- Aug 3, 2018, 11:25:46 AM (5 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
- Children:
- ff1e0f38
- Parents:
- 25a9b5a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r25a9b5a rc59712e 17 17 ######################## -*- Mode: Makefile-Automake -*- ###################### 18 18 ############################################################################### 19 19 20 VPATH = @srcdir@ 20 21 am__is_gnu_make = { \ … … 162 163 NROFF = nroff 163 164 MANS = $(man1_MANS) 165 DATA = $(noinst_DATA) 164 166 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ 165 167 distclean-recursive maintainer-clean-recursive … … 249 251 AUTOMAKE = @AUTOMAKE@ 250 252 AWK = @AWK@ 251 BACKEND_CC = @BACKEND_CC@ 253 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 252 254 BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@ 253 255 BUILD_IN_TREE_FLAGS_NOLIB = @BUILD_IN_TREE_FLAGS_NOLIB@ … … 291 293 LEXLIB = @LEXLIB@ 292 294 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 295 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@ 296 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@ 293 297 LIBOBJS = @LIBOBJS@ 294 298 LIBS = @LIBS@ 295 299 LTLIBOBJS = @LTLIBOBJS@ 296 MACHINE_TYPE = @MACHINE_TYPE@297 300 MAKEINFO = @MAKEINFO@ 298 301 MKDIR_P = @MKDIR_P@ … … 310 313 SHELL = @SHELL@ 311 314 STRIP = @STRIP@ 315 TARGET_HOSTS = @TARGET_HOSTS@ 312 316 VERSION = @VERSION@ 313 317 YACC = @YACC@ … … 365 369 top_builddir = @top_builddir@ 366 370 top_srcdir = @top_srcdir@ 367 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 368 SUBDIRS = driver src libcfa/prelude libcfa/src # order important, src before prelude because cfa-cpp used to build prelude 369 EXTRA_DIST = Docs # non-source files 371 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 370 372 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 373 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 374 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@ 371 375 man1_MANS = doc/man/cfa.1 372 376 all: config.h … … 760 764 check-am: all-am 761 765 check: check-recursive 762 all-am: Makefile $(MANS) config.h766 all-am: Makefile $(MANS) $(DATA) config.h 763 767 installdirs: installdirs-recursive 764 768 installdirs-am: … … 888 892 .PRECIOUS: Makefile 889 893 894 # order important 895 896 @LIBCFA_TARGET_MAKEFILES@ : 897 ls $(dir $@)/config.data || (echo "Missing config.data, re-run configure script again" && false) 898 cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(cat config.data) 890 899 891 900 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset
for help on using the changeset viewer.