diff options
author | dscho <dscho> | 2004-01-21 01:19:11 +0000 |
---|---|---|
committer | dscho <dscho> | 2004-01-21 01:19:11 +0000 |
commit | c0c5aace2f50f970ee0d4881c57c3b317824d98c (patch) | |
tree | 96d93960d30befae60c2b2b7b058cc4fcd9c1245 /examples/Makefile.am | |
parent | d58d3af1ce091dfeba4d6ed3a2ad5e629678ead5 (diff) | |
download | libvncserver-c0c5aace2f50f970ee0d4881c57c3b317824d98c.zip libvncserver-c0c5aace2f50f970ee0d4881c57c3b317824d98c.tar.gz |
add a simple example how to use rfbDoCopyRect
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index c2be9b8..8f19836 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,4 +1,5 @@ CFLAGS=-I.. -g -Wall +LDADD = ../libvncserver.a if HAVE_LIBPTHREAD BACKGROUND_TEST=blooptest @@ -9,10 +10,12 @@ MAC=mac mac_LDFLAGS=-framework ApplicationServices -framework Carbon -framework IOKit endif +copyrecttest_LDADD=$(LDADD) -lm + noinst_HEADERS=radon.h noinst_PROGRAMS=example pnmshow regiontest pnmshow24 fontsel \ - vncev storepasswd colourmaptest simple simple15 $(BACKGROUND_TEST) $(MAC) + vncev storepasswd colourmaptest simple simple15 copyrecttest \ + $(BACKGROUND_TEST) $(MAC) -LDADD = ../libvncserver.a |