Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r47c1928 r7fb69f6  
    1717######################## -*- Mode: Makefile-Automake -*- ######################
    1818###############################################################################
    19 
    2019VPATH = @srcdir@
    2120am__is_gnu_make = { \
     
    9493subdir = .
    9594ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
    96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \
    97         $(top_srcdir)/configure.ac
     95am__aclocal_m4_deps = $(top_srcdir)/configure.ac
    9896am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
    9997        $(ACLOCAL_M4)
     
    164162NROFF = nroff
    165163MANS = $(man1_MANS)
    166 DATA = $(noinst_DATA)
    167164RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
    168165  distclean-recursive maintainer-clean-recursive
     
    252249AUTOMAKE = @AUTOMAKE@
    253250AWK = @AWK@
    254 BACKEND_CC = @BACKEND_CC@     # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
     251BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
    255252BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@
     253BUILD_IN_TREE_FLAGS_NOLIB = @BUILD_IN_TREE_FLAGS_NOLIB@
    256254CC = @CC@
    257255CCAS = @CCAS@
     
    284282EXEEXT = @EXEEXT@
    285283GREP = @GREP@
    286 HOST_FLAGS = @HOST_FLAGS@
    287284INSTALL = @INSTALL@
    288285INSTALL_DATA = @INSTALL_DATA@
     
    294291LEXLIB = @LEXLIB@
    295292LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
    296 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@
    297 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@
    298293LIBOBJS = @LIBOBJS@
    299294LIBS = @LIBS@
    300295LTLIBOBJS = @LTLIBOBJS@
     296MACHINE_TYPE = @MACHINE_TYPE@
    301297MAKEINFO = @MAKEINFO@
    302298MKDIR_P = @MKDIR_P@
     
    314310SHELL = @SHELL@
    315311STRIP = @STRIP@
    316 TARGET_HOSTS = @TARGET_HOSTS@
    317312VERSION = @VERSION@
    318313YACC = @YACC@
     
    370365top_builddir = @top_builddir@
    371366top_srcdir = @top_srcdir@
    372 AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
    373 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/*
    374 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
    375 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@
     367AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
     368SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude
     369EXTRA_DIST = Docs                       # non-source files
     370MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/*
    376371man1_MANS = doc/man/cfa.1
    377 debug = yes
    378372all: config.h
    379373        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    766760check-am: all-am
    767761check: check-recursive
    768 all-am: Makefile $(MANS) $(DATA) config.h
     762all-am: Makefile $(MANS) config.h
    769763installdirs: installdirs-recursive
    770764installdirs-am:
     
    779773install-am: all-am
    780774        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     775
     776installcheck: installcheck-recursive
    781777install-strip:
    782778        if test -z '$(STRIP)'; then \
     
    892888.PRECIOUS: Makefile
    893889
    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)
    902 check:
    903         $(MAKE) -C tests all-tests installed=no debug=${debug}
    904 
    905 installcheck:
    906         $(MAKE) -C tests all-tests installed=yes debug=${debug}
    907 
    908 status: @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"
    912890
    913891# Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset for help on using the changeset viewer.