Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r6e7e2b36 r76f2e97f  
    1515
    1616@SET_MAKE@
    17 
    18 ######################## -*- Mode: Makefile-Automake -*- ######################
    19 ###############################################################################
    2017VPATH = @srcdir@
    2118pkgdatadir = $(datadir)/@PACKAGE@
     
    3835DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
    3936        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
    40         $(top_srcdir)/configure INSTALL automake/compile \
    41         automake/depcomp automake/install-sh automake/missing \
    42         automake/ylwrap
     37        $(top_srcdir)/configure $(top_srcdir)/driver/Makefile.in \
     38        $(top_srcdir)/libcfa/Makefile.in $(top_srcdir)/src/Makefile.in \
     39        $(top_srcdir)/src/examples/Makefile.in AUTHORS INSTALL TODO \
     40        install-sh missing mkinstalldirs
    4341ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
    44 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
     42am__aclocal_m4_deps = $(top_srcdir)/configure.in
    4543am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
    4644        $(ACLOCAL_M4)
    4745am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
    4846 configure.lineno config.status.lineno
    49 mkinstalldirs = $(install_sh) -d
     47mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
    5048CONFIG_HEADER = config.h
    51 CONFIG_CLEAN_FILES =
     49CONFIG_CLEAN_FILES = src/Makefile driver/Makefile libcfa/Makefile \
     50        src/examples/Makefile
    5251CONFIG_CLEAN_VPATH_FILES =
    5352SOURCES =
     
    109108distcleancheck_listfiles = find . -type f -print
    110109ACLOCAL = @ACLOCAL@
    111 ALLOCA = @ALLOCA@
    112110AMTAR = @AMTAR@
    113111AUTOCONF = @AUTOCONF@
     
    115113AUTOMAKE = @AUTOMAKE@
    116114AWK = @AWK@
    117 BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
     115BACKEND_CC = @BACKEND_CC@
    118116CC = @CC@
    119117CCDEPMODE = @CCDEPMODE@
     
    125123CPP = @CPP@
    126124CPPFLAGS = @CPPFLAGS@
     125CPP_PATH = @CPP_PATH@
    127126CXX = @CXX@
    128127CXXDEPMODE = @CXXDEPMODE@
     
    150149LIBS = @LIBS@
    151150LTLIBOBJS = @LTLIBOBJS@
    152 MAINT = @MAINT@
    153151MAKEINFO = @MAKEINFO@
    154152MKDIR_P = @MKDIR_P@
     
    162160PACKAGE_VERSION = @PACKAGE_VERSION@
    163161PATH_SEPARATOR = @PATH_SEPARATOR@
    164 RANLIB = @RANLIB@
    165162SET_MAKE = @SET_MAKE@
    166163SHELL = @SHELL@
     
    202199pdfdir = @pdfdir@
    203200prefix = @prefix@
     201preludedir = @preludedir@
    204202program_transform_name = @program_transform_name@
    205203psdir = @psdir@
     
    212210top_builddir = @top_builddir@
    213211top_srcdir = @top_srcdir@
    214 AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
    215 SUBDIRS = src/driver src src/libcfa     # order important, src before libcfa because cfa-cpp used to build prelude
    216 EXTRA_DIST = Docs                       # non-source files
     212SUBDIRS = driver libcfa src
     213
     214# non-source files
     215EXTRA_DIST = Docs
    217216all: config.h
    218217        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    221220am--refresh: Makefile
    222221        @:
    223 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
     222$(srcdir)/Makefile.in: $(srcdir)/Makefile.am  $(am__configure_deps)
    224223        @for dep in $?; do \
    225224          case '$(am__configure_deps)' in \
     
    248247        $(SHELL) ./config.status --recheck
    249248
    250 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
     249$(top_srcdir)/configure: $(am__configure_deps)
    251250        $(am__cd) $(srcdir) && $(AUTOCONF)
    252 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
     251$(ACLOCAL_M4): $(am__aclocal_m4_deps)
    253252        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
    254253$(am__aclocal_m4_deps):
     
    261260        @rm -f stamp-h1
    262261        cd $(top_builddir) && $(SHELL) ./config.status config.h
    263 $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
     262$(srcdir)/config.h.in: $(am__configure_deps)
    264263        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
    265264        rm -f stamp-h1
     
    268267distclean-hdr:
    269268        -rm -f config.h stamp-h1
     269src/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/Makefile.in
     270        cd $(top_builddir) && $(SHELL) ./config.status $@
     271driver/Makefile: $(top_builddir)/config.status $(top_srcdir)/driver/Makefile.in
     272        cd $(top_builddir) && $(SHELL) ./config.status $@
     273libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in
     274        cd $(top_builddir) && $(SHELL) ./config.status $@
     275src/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/examples/Makefile.in
     276        cd $(top_builddir) && $(SHELL) ./config.status $@
    270277
    271278# This directory's subdirectories are mostly independent; you can cd
Note: See TracChangeset for help on using the changeset viewer.