Changes in Makefile.in [47c1928:7fb69f6]
- File:
-
- 1 edited
-
Makefile.in (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r47c1928 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@ … … 284 282 EXEEXT = @EXEEXT@ 285 283 GREP = @GREP@ 286 HOST_FLAGS = @HOST_FLAGS@287 284 INSTALL = @INSTALL@ 288 285 INSTALL_DATA = @INSTALL_DATA@ … … 294 291 LEXLIB = @LEXLIB@ 295 292 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 296 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@297 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@298 293 LIBOBJS = @LIBOBJS@ 299 294 LIBS = @LIBS@ 300 295 LTLIBOBJS = @LTLIBOBJS@ 296 MACHINE_TYPE = @MACHINE_TYPE@ 301 297 MAKEINFO = @MAKEINFO@ 302 298 MKDIR_P = @MKDIR_P@ … … 314 310 SHELL = @SHELL@ 315 311 STRIP = @STRIP@ 316 TARGET_HOSTS = @TARGET_HOSTS@317 312 VERSION = @VERSION@ 318 313 YACC = @YACC@ … … 370 365 top_builddir = @top_builddir@ 371 366 top_srcdir = @top_srcdir@ 372 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names373 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 374 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 375 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/* 376 371 man1_MANS = doc/man/cfa.1 377 debug = yes378 372 all: config.h 379 373 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 766 760 check-am: all-am 767 761 check: check-recursive 768 all-am: Makefile $(MANS) $(DATA)config.h762 all-am: Makefile $(MANS) config.h 769 763 installdirs: installdirs-recursive 770 764 installdirs-am: … … 779 773 install-am: all-am 780 774 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 775 776 installcheck: installcheck-recursive 781 777 install-strip: 782 778 if test -z '$(STRIP)'; then \ … … 892 888 .PRECIOUS: Makefile 893 889 894 # order important895 896 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure897 @$(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"912 890 913 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.