Changes in Makefile.am [575a6e5:874960b]
- File:
-
- 1 edited
-
Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r575a6e5 r874960b 6 6 ## file "LICENCE" distributed with Cforall. 7 7 ## 8 ## Makefile.am -- 8 ## Makefile.am -- 9 9 ## 10 10 ## Author : Peter A. Buhr … … 15 15 ############################################################################### 16 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude 19 EXTRA_DIST = Docs # non-source files 20 BACKEND_CC = @BACKEND_CC@ # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command 19 21 20 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* 21 # order important 22 23 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 24 25 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure 26 @$(eval config_file = $(dir $@)config.data) 27 @ls $(config_file) || (echo "Missing config.data, re-run configure script again" && false) 28 @$(eval config_data = $(shell cat $(config_file))) 29 @echo "Configuring libcfa with '$(config_data)''" 30 @cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(config_data) 31 32 noinst_DATA = @LIBCFA_TARGET_MAKEFILES@ 22 MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/* 33 23 34 24 man1_MANS = doc/man/cfa.1 35 36 debug=yes37 check:38 $(MAKE) -C tests all-tests installed=no debug=${debug}39 40 installcheck:41 $(MAKE) -C tests all-tests installed=yes debug=${debug}
Note:
See TracChangeset
for help on using the changeset viewer.