190a5509f4
This library allows one to compile droidVNCserver without having AOSP. Screen grabbing is performed by this library, which is compiled against AOSP.
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
|
|
|