diff options
author | dscho <dscho> | 2009-02-03 12:33:28 +0000 |
---|---|---|
committer | dscho <dscho> | 2009-02-03 12:33:28 +0000 |
commit | 3998c18e263b0c73af7451e2af2f40fb305520bf (patch) | |
tree | 7228411e18a0ac93fe11c1d47255471450f4a924 /test | |
parent | b0c272e723cc798ddced7b82fc79eb2c9e4fe677 (diff) | |
download | libtdevnc-3998c18e263b0c73af7451e2af2f40fb305520bf.tar.gz libtdevnc-3998c18e263b0c73af7451e2af2f40fb305520bf.zip |
test/Makefile: use check_PROGRAMS
Rather than use noinst_PROGRAMS, check_PROGRAMS will define programs that
are only compiled when someone actually runs `make check`.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 82cf181..30498c2 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -8,7 +8,7 @@ endif copyrecttest_LDADD=$(LDADD) -lm -noinst_PROGRAMS=$(ENCODINGS_TEST) cargstest copyrecttest $(BACKGROUND_TEST) \ +check_PROGRAMS=$(ENCODINGS_TEST) cargstest copyrecttest $(BACKGROUND_TEST) \ cursortest test: encodingstest$(EXEEXT) cargstest$(EXEEXT) copyrecttest$(EXEEXT) |