Changeset 455a7d5 for Makefile.in


Ignore:
Timestamp:
Aug 9, 2018, 6:35:02 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
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.
Message:

Merge branch 'master' into jenkins-sandbox

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    rfb975a50 r455a7d5  
    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
     255BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@
    252256CC = @CC@
    253257CCAS = @CCAS@
     
    255259CCASFLAGS = @CCASFLAGS@
    256260CCDEPMODE = @CCDEPMODE@
     261CFACC = @CFACC@
     262CFACPP = @CFACPP@
    257263CFA_BACKEND_CC = @CFA_BACKEND_CC@
    258264CFA_BINDIR = @CFA_BINDIR@
     
    271277DEFS = @DEFS@
    272278DEPDIR = @DEPDIR@
     279DRIVER_DIR = @DRIVER_DIR@
    273280ECHO_C = @ECHO_C@
    274281ECHO_N = @ECHO_N@
     
    286293LEXLIB = @LEXLIB@
    287294LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
     295LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@
     296LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@
    288297LIBOBJS = @LIBOBJS@
    289298LIBS = @LIBS@
    290299LTLIBOBJS = @LTLIBOBJS@
    291 MACHINE_TYPE = @MACHINE_TYPE@
    292300MAKEINFO = @MAKEINFO@
    293301MKDIR_P = @MKDIR_P@
     
    305313SHELL = @SHELL@
    306314STRIP = @STRIP@
     315TARGET_HOSTS = @TARGET_HOSTS@
    307316VERSION = @VERSION@
    308317YACC = @YACC@
     
    360369top_builddir = @top_builddir@
    361370top_srcdir = @top_srcdir@
    362 AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
    363 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/*
     371AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     372MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/*
     373SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
     374noinst_DATA = @LIBCFA_TARGET_MAKEFILES@
    366375man1_MANS = doc/man/cfa.1
     376debug = yes
    367377all: config.h
    368378        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    755765check-am: all-am
    756766check: check-recursive
    757 all-am: Makefile $(MANS) config.h
     767all-am: Makefile $(MANS) $(DATA) config.h
    758768installdirs: installdirs-recursive
    759769installdirs-am:
     
    768778install-am: all-am
    769779        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
    770 
    771 installcheck: installcheck-recursive
    772780install-strip:
    773781        if test -z '$(STRIP)'; then \
     
    883891.PRECIOUS: Makefile
    884892
     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)
     901check:
     902        $(MAKE) -C tests all-tests installed=no debug=${debug}
     903
     904installcheck:
     905        $(MAKE) -C tests all-tests installed=yes debug=${debug}
     906
     907status: @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"
    885911
    886912# Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset for help on using the changeset viewer.