diff options
author | Daiki Ueno <dueno@redhat.com> | 2018-01-25 13:00:06 +0100 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2018-01-30 19:41:26 +0100 |
commit | 14853b1d8466d4e3b5aa23ff14f2abacd4e7e8ef (patch) | |
tree | 05c0bce2c87250d85c06f578fc8cd1eb26e1d506 /Makefile.am | |
parent | 05b67a36e2118b4485da7bd26ed3ba85efdeddb4 (diff) |
build: Delay compilation of test-related stuff
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index bcbd049..94d1bea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,8 +16,9 @@ AM_CPPFLAGS = \ bin_PROGRAMS = private_PROGRAMS = -check_PROGRAMS = -check_SCRIPTS = +check_PROGRAMS = $(c_tests) +check_SCRIPTS = $(sh_tests) +check_LTLIBRARIES = CLEANFILES = @@ -32,7 +33,9 @@ noinst_LTLIBRARIES = noinst_PROGRAMS = noinst_SCRIPTS = -TESTS = $(check_PROGRAMS) $(check_SCRIPTS) +c_tests = +sh_tests = +TESTS = $(c_tests) $(sh_tests) moduledir = $(p11_module_path) module_LTLIBRARIES = |