Changeset cdbab55 for Makefile.in


Ignore:
Timestamp:
Aug 21, 2018, 2:24:29 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, 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:
2a6292d
Parents:
2b79a70 (diff), efa8b6af (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 branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r2b79a70 rcdbab55  
    1717######################## -*- Mode: Makefile-Automake -*- ######################
    1818###############################################################################
     19
    1920VPATH = @srcdir@
    2021am__is_gnu_make = { \
     
    9394subdir = .
    9495ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
    95 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
     96am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \
     97        $(top_srcdir)/configure.ac
    9698am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
    9799        $(ACLOCAL_M4)
     
    162164NROFF = nroff
    163165MANS = $(man1_MANS)
     166DATA = $(noinst_DATA)
    164167RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
    165168  distclean-recursive maintainer-clean-recursive
     
    249252AUTOMAKE = @AUTOMAKE@
    250253AWK = @AWK@
    251 BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
     254BACKEND_CC = @BACKEND_CC@     # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
    252255BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@
    253 BUILD_IN_TREE_FLAGS_NOLIB = @BUILD_IN_TREE_FLAGS_NOLIB@
    254256CC = @CC@
    255257CCAS = @CCAS@
     
    282284EXEEXT = @EXEEXT@
    283285GREP = @GREP@
     286HOST_FLAGS = @HOST_FLAGS@
    284287INSTALL = @INSTALL@
    285288INSTALL_DATA = @INSTALL_DATA@
     
    291294LEXLIB = @LEXLIB@
    292295LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
     296LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@
     297LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@
    293298LIBOBJS = @LIBOBJS@
    294299LIBS = @LIBS@
    295300LTLIBOBJS = @LTLIBOBJS@
    296 MACHINE_TYPE = @MACHINE_TYPE@
    297301MAKEINFO = @MAKEINFO@
    298302MKDIR_P = @MKDIR_P@
     
    310314SHELL = @SHELL@
    311315STRIP = @STRIP@
     316TARGET_HOSTS = @TARGET_HOSTS@
    312317VERSION = @VERSION@
    313318YACC = @YACC@
     
    365370top_builddir = @top_builddir@
    366371top_srcdir = @top_srcdir@
    367 AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
    368 SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude
    369 EXTRA_DIST = Docs                       # non-source files
    370 MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/*
     372AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     373MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/*
     374SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
     375noinst_DATA = @LIBCFA_TARGET_MAKEFILES@
    371376man1_MANS = doc/man/cfa.1
     377debug = yes
    372378all: config.h
    373379        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    760766check-am: all-am
    761767check: check-recursive
    762 all-am: Makefile $(MANS) config.h
     768all-am: Makefile $(MANS) $(DATA) config.h
    763769installdirs: installdirs-recursive
    764770installdirs-am:
     
    773779install-am: all-am
    774780        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
    775 
    776 installcheck: installcheck-recursive
    777781install-strip:
    778782        if test -z '$(STRIP)'; then \
     
    888892.PRECIOUS: Makefile
    889893
     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)
     902check:
     903        $(MAKE) -C tests all-tests installed=no debug=${debug}
     904
     905installcheck:
     906        $(MAKE) -C tests all-tests installed=yes debug=${debug}
     907
     908status: @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"
    890912
    891913# Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset for help on using the changeset viewer.