Changeset c59712e for Makefile.in


Ignore:
Timestamp:
Aug 3, 2018, 11:25:46 AM (5 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
Children:
ff1e0f38
Parents:
25a9b5a
Message:

Parent make now seems to properly call libcfa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r25a9b5a rc59712e  
    1717######################## -*- Mode: Makefile-Automake -*- ######################
    1818###############################################################################
     19
    1920VPATH = @srcdir@
    2021am__is_gnu_make = { \
     
    162163NROFF = nroff
    163164MANS = $(man1_MANS)
     165DATA = $(noinst_DATA)
    164166RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
    165167  distclean-recursive maintainer-clean-recursive
     
    249251AUTOMAKE = @AUTOMAKE@
    250252AWK = @AWK@
    251 BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
     253BACKEND_CC = @BACKEND_CC@     # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
    252254BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@
    253255BUILD_IN_TREE_FLAGS_NOLIB = @BUILD_IN_TREE_FLAGS_NOLIB@
     
    291293LEXLIB = @LEXLIB@
    292294LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
     295LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@
     296LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@
    293297LIBOBJS = @LIBOBJS@
    294298LIBS = @LIBS@
    295299LTLIBOBJS = @LTLIBOBJS@
    296 MACHINE_TYPE = @MACHINE_TYPE@
    297300MAKEINFO = @MAKEINFO@
    298301MKDIR_P = @MKDIR_P@
     
    310313SHELL = @SHELL@
    311314STRIP = @STRIP@
     315TARGET_HOSTS = @TARGET_HOSTS@
    312316VERSION = @VERSION@
    313317YACC = @YACC@
     
    365369top_builddir = @top_builddir@
    366370top_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
     371AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    370372MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/*
     373SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
     374noinst_DATA = @LIBCFA_TARGET_MAKEFILES@
    371375man1_MANS = doc/man/cfa.1
    372376all: config.h
     
    760764check-am: all-am
    761765check: check-recursive
    762 all-am: Makefile $(MANS) config.h
     766all-am: Makefile $(MANS) $(DATA) config.h
    763767installdirs: installdirs-recursive
    764768installdirs-am:
     
    888892.PRECIOUS: Makefile
    889893
     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)
    890899
    891900# Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset for help on using the changeset viewer.