summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBert van Hall <bert.vanhall@gmx.de>2017-02-08 17:53:58 +0100
committerBert van Hall <bert.vanhall@gmx.de>2017-02-13 12:18:07 +0100
commitfe943395873c6cbfdfa0eadb8a5d13f2c95e8614 (patch)
tree7a8620e805fe7c1c5ce289cb82d84a3f16459719 /test
parent2041bfd5cd6c6a8bcec260a3fa86d340050892c8 (diff)
downloadlibtdevnc-fe943395873c6cbfdfa0eadb8a5d13f2c95e8614.tar.gz
libtdevnc-fe943395873c6cbfdfa0eadb8a5d13f2c95e8614.zip
drop autotools
Since autotools officially is no longer supported (see various github issues), drop the related infrastructure to stop tempting people to use it for building. Signed-off-by: Bert van Hall <bert.vanhall@gmx.de>
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
deleted file mode 100644
index f07fc82..0000000
--- a/test/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-check_PROGRAMS =
-
-if HAVE_LIBJPEG
-# TurboJPEG wrapper tests
-check_PROGRAMS += tjunittest tjbench
-tjunittest_SOURCES=tjunittest.c ../common/turbojpeg.c ../common/turbojpeg.h \
- tjutil.c tjutil.h
-tjbench_SOURCES=tjbench.c ../common/turbojpeg.c ../common/turbojpeg.h \
- tjutil.c tjutil.h bmp.c bmp.h
-tjbench_LDADD=$(LDADD) -lm
-endif
-
-AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/common
-LDADD = ../libvncserver/libvncserver.la ../libvncclient/libvncclient.la @WSOCKLIB@
-
-if HAVE_LIBPTHREAD
-BACKGROUND_TEST=blooptest
-ENCODINGS_TEST=encodingstest
-endif
-
-copyrecttest_LDADD=$(LDADD) -lm
-
-check_PROGRAMS += $(ENCODINGS_TEST) cargstest copyrecttest $(BACKGROUND_TEST) \
- cursortest
-
-test: encodingstest$(EXEEXT) cargstest$(EXEEXT) copyrecttest$(EXEEXT)
- ./encodingstest && ./cargstest
-