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