Changes in Makefile.in [575a6e5:7fb69f6]
- File:
-
- 1 edited
-
Makefile.in (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r575a6e5 r7fb69f6 17 17 ######################## -*- Mode: Makefile-Automake -*- ###################### 18 18 ############################################################################### 19 20 19 VPATH = @srcdir@ 21 20 am__is_gnu_make = { \ … … 94 93 subdir = . 95 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 97 $(top_srcdir)/configure.ac 95 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 98 96 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 99 97 $(ACLOCAL_M4) … … 164 162 NROFF = nroff 165 163 MANS = $(man1_MANS) 166 DATA = $(noinst_DATA)167 164 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ 168 165 distclean-recursive maintainer-clean-recursive … … 252 249 AUTOMAKE = @AUTOMAKE@ 253 250 AWK = @AWK@ 254 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command251 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 255 252 BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@ 253 BUILD_IN_TREE_FLAGS_NOLIB = @BUILD_IN_TREE_FLAGS_NOLIB@ 256 254 CC = @CC@ 257 255 CCAS = @CCAS@ … … 293 291 LEXLIB = @LEXLIB@ 294 292 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 295 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@296 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@297 293 LIBOBJS = @LIBOBJS@ 298 294 LIBS = @LIBS@ 299 295 LTLIBOBJS = @LTLIBOBJS@ 296 MACHINE_TYPE = @MACHINE_TYPE@ 300 297 MAKEINFO = @MAKEINFO@ 301 298 MKDIR_P = @MKDIR_P@ … … 313 310 SHELL = @SHELL@ 314 311 STRIP = @STRIP@ 315 TARGET_HOSTS = @TARGET_HOSTS@316 312 VERSION = @VERSION@ 317 313 YACC = @YACC@ … … 369 365 top_builddir = @top_builddir@ 370 366 top_srcdir = @top_srcdir@ 371 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names372 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 373 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 374 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@ 367 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 368 SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude 369 EXTRA_DIST = Docs # non-source files 370 MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/* 375 371 man1_MANS = doc/man/cfa.1 376 debug = yes377 372 all: config.h 378 373 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 765 760 check-am: all-am 766 761 check: check-recursive 767 all-am: Makefile $(MANS) $(DATA)config.h762 all-am: Makefile $(MANS) config.h 768 763 installdirs: installdirs-recursive 769 764 installdirs-am: … … 778 773 install-am: all-am 779 774 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 775 776 installcheck: installcheck-recursive 780 777 install-strip: 781 778 if test -z '$(STRIP)'; then \ … … 891 888 .PRECIOUS: Makefile 892 889 893 # order important894 895 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure896 @$(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)901 check:902 $(MAKE) -C tests all-tests installed=no debug=${debug}903 904 installcheck:905 $(MAKE) -C tests all-tests installed=yes debug=${debug}906 890 907 891 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note:
See TracChangeset
for help on using the changeset viewer.