Changes in Makefile.in [7fb69f6:47c1928]
- File:
-
- 1 edited
-
Makefile.in (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r7fb69f6 r47c1928 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@ … … 282 284 EXEEXT = @EXEEXT@ 283 285 GREP = @GREP@ 286 HOST_FLAGS = @HOST_FLAGS@ 284 287 INSTALL = @INSTALL@ 285 288 INSTALL_DATA = @INSTALL_DATA@ … … 291 294 LEXLIB = @LEXLIB@ 292 295 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 296 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@ 297 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@ 293 298 LIBOBJS = @LIBOBJS@ 294 299 LIBS = @LIBS@ 295 300 LTLIBOBJS = @LTLIBOBJS@ 296 MACHINE_TYPE = @MACHINE_TYPE@297 301 MAKEINFO = @MAKEINFO@ 298 302 MKDIR_P = @MKDIR_P@ … … 310 314 SHELL = @SHELL@ 311 315 STRIP = @STRIP@ 316 TARGET_HOSTS = @TARGET_HOSTS@ 312 317 VERSION = @VERSION@ 313 318 YACC = @YACC@ … … 365 370 top_builddir = @top_builddir@ 366 371 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/* 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@ 371 376 man1_MANS = doc/man/cfa.1 377 debug = yes 372 378 all: config.h 373 379 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 760 766 check-am: all-am 761 767 check: check-recursive 762 all-am: Makefile $(MANS) config.h768 all-am: Makefile $(MANS) $(DATA) config.h 763 769 installdirs: installdirs-recursive 764 770 installdirs-am: … … 773 779 install-am: all-am 774 780 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 775 776 installcheck: installcheck-recursive777 781 install-strip: 778 782 if test -z '$(STRIP)'; then \ … … 888 892 .PRECIOUS: Makefile 889 893 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" 890 912 891 913 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note:
See TracChangeset
for help on using the changeset viewer.