Changes in Makefile.in [6e7e2b36:76f2e97f]
- File:
-
- 1 edited
-
Makefile.in (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r6e7e2b36 r76f2e97f 15 15 16 16 @SET_MAKE@ 17 18 ######################## -*- Mode: Makefile-Automake -*- ######################19 ###############################################################################20 17 VPATH = @srcdir@ 21 18 pkgdatadir = $(datadir)/@PACKAGE@ … … 38 35 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ 39 36 $(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 43 41 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 44 am__aclocal_m4_deps = $(top_srcdir)/configure. ac42 am__aclocal_m4_deps = $(top_srcdir)/configure.in 45 43 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 46 44 $(ACLOCAL_M4) 47 45 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ 48 46 configure.lineno config.status.lineno 49 mkinstalldirs = $( install_sh) -d47 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 50 48 CONFIG_HEADER = config.h 51 CONFIG_CLEAN_FILES = 49 CONFIG_CLEAN_FILES = src/Makefile driver/Makefile libcfa/Makefile \ 50 src/examples/Makefile 52 51 CONFIG_CLEAN_VPATH_FILES = 53 52 SOURCES = … … 109 108 distcleancheck_listfiles = find . -type f -print 110 109 ACLOCAL = @ACLOCAL@ 111 ALLOCA = @ALLOCA@112 110 AMTAR = @AMTAR@ 113 111 AUTOCONF = @AUTOCONF@ … … 115 113 AUTOMAKE = @AUTOMAKE@ 116 114 AWK = @AWK@ 117 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command115 BACKEND_CC = @BACKEND_CC@ 118 116 CC = @CC@ 119 117 CCDEPMODE = @CCDEPMODE@ … … 125 123 CPP = @CPP@ 126 124 CPPFLAGS = @CPPFLAGS@ 125 CPP_PATH = @CPP_PATH@ 127 126 CXX = @CXX@ 128 127 CXXDEPMODE = @CXXDEPMODE@ … … 150 149 LIBS = @LIBS@ 151 150 LTLIBOBJS = @LTLIBOBJS@ 152 MAINT = @MAINT@153 151 MAKEINFO = @MAKEINFO@ 154 152 MKDIR_P = @MKDIR_P@ … … 162 160 PACKAGE_VERSION = @PACKAGE_VERSION@ 163 161 PATH_SEPARATOR = @PATH_SEPARATOR@ 164 RANLIB = @RANLIB@165 162 SET_MAKE = @SET_MAKE@ 166 163 SHELL = @SHELL@ … … 202 199 pdfdir = @pdfdir@ 203 200 prefix = @prefix@ 201 preludedir = @preludedir@ 204 202 program_transform_name = @program_transform_name@ 205 203 psdir = @psdir@ … … 212 210 top_builddir = @top_builddir@ 213 211 top_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 212 SUBDIRS = driver libcfa src 213 214 # non-source files 215 EXTRA_DIST = Docs 217 216 all: config.h 218 217 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 221 220 am--refresh: Makefile 222 221 @: 223 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@$(srcdir)/Makefile.am $(am__configure_deps)222 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 224 223 @for dep in $?; do \ 225 224 case '$(am__configure_deps)' in \ … … 248 247 $(SHELL) ./config.status --recheck 249 248 250 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@$(am__configure_deps)249 $(top_srcdir)/configure: $(am__configure_deps) 251 250 $(am__cd) $(srcdir) && $(AUTOCONF) 252 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@$(am__aclocal_m4_deps)251 $(ACLOCAL_M4): $(am__aclocal_m4_deps) 253 252 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 254 253 $(am__aclocal_m4_deps): … … 261 260 @rm -f stamp-h1 262 261 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) 264 263 ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) 265 264 rm -f stamp-h1 … … 268 267 distclean-hdr: 269 268 -rm -f config.h stamp-h1 269 src/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/Makefile.in 270 cd $(top_builddir) && $(SHELL) ./config.status $@ 271 driver/Makefile: $(top_builddir)/config.status $(top_srcdir)/driver/Makefile.in 272 cd $(top_builddir) && $(SHELL) ./config.status $@ 273 libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in 274 cd $(top_builddir) && $(SHELL) ./config.status $@ 275 src/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/examples/Makefile.in 276 cd $(top_builddir) && $(SHELL) ./config.status $@ 270 277 271 278 # This directory's subdirectories are mostly independent; you can cd
Note:
See TracChangeset
for help on using the changeset viewer.