c8e4a65bd1
- Rotation now fully working (on demand with F4 key) - Speed improvements and bug fixes - Improved server state detection (using IPC) - changed to LibVNCServer from kanaka repository - New webserver vnc client (noVNC), uses javascript - Ability to make a reverse connection - Two new framebuffer access methods (gingerbread and adb) - New minimalistic interface
17 lines
418 B
Makefile
Executable File
17 lines
418 B
Makefile
Executable File
INCLUDES = -I$(top_srcdir)
|
|
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
|
|
|