Changeset ff593a3


Ignore:
Timestamp:
Aug 6, 2018, 2:11:30 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
73abe95
Parents:
28582b2
Message:

Added support for the standard automake targets 'check' and 'installcheck'

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r28582b2 rff593a3  
    3333
    3434man1_MANS = doc/man/cfa.1
     35
     36debug=yes
     37check:
     38        $(MAKE) -C tests all-tests install=no debug=${debug}
     39
     40installcheck:
     41        $(MAKE) -C tests all-tests install=yes debug=${debug}
  • Makefile.in

    r28582b2 rff593a3  
    374374noinst_DATA = @LIBCFA_TARGET_MAKEFILES@
    375375man1_MANS = doc/man/cfa.1
     376debug = yes
    376377all: config.h
    377378        $(MAKE) $(AM_MAKEFLAGS) all-recursive
     
    777778install-am: all-am
    778779        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
    779 
    780 installcheck: installcheck-recursive
    781780install-strip:
    782781        if test -z '$(STRIP)'; then \
     
    900899        @echo "Configuring libcfa with '$(config_data)''"
    901900        @cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(config_data)
     901check:
     902        $(MAKE) -C tests all-tests install=no debug=${debug}
     903
     904installcheck:
     905        $(MAKE) -C tests all-tests install=yes debug=${debug}
    902906
    903907# Tell versions [3.59,3.63) of GNU make to not export all variables.
  • tests/Makefile.am

    r28582b2 rff593a3  
    1717
    1818debug=yes
     19installed=no
    1920
    2021quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes
  • tests/Makefile.in

    r28582b2 rff593a3  
    296296top_srcdir = @top_srcdir@
    297297debug = yes
     298installed = no
    298299quick_test = avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes
    299300concurrent =
Note: See TracChangeset for help on using the changeset viewer.