Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r575a6e5 r874960b  
    66## file "LICENCE" distributed with Cforall.
    77##
    8 ## Makefile.am --
     8## Makefile.am -- 
    99##
    1010## Author           : Peter A. Buhr
     
    1515###############################################################################
    1616
    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
     17AUTOMAKE_OPTIONS = foreign              # do not require all the GNU file names
     18SUBDIRS = src/driver src src/prelude src/libcfa # order important, src before prelude because cfa-cpp used to build prelude
     19EXTRA_DIST = Docs                       # non-source files
     20BACKEND_CC = @BACKEND_CC@               # C compiler used to compile Cforall programs, versus C++ compiler used to build cfa command
    1921
    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@
     22MAINTAINERCLEANFILES = lib/* bin/* src/examples/.deps/* src/tests/.deps/* src/tests/.out/*
    3323
    3424man1_MANS = doc/man/cfa.1
    35 
    36 debug=yes
    37 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.