diff options
Diffstat (limited to 'client_examples/Makefile.am')
-rw-r--r-- | client_examples/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client_examples/Makefile.am b/client_examples/Makefile.am new file mode 100644 index 0000000..d2a3e29 --- /dev/null +++ b/client_examples/Makefile.am @@ -0,0 +1,13 @@ +DEFINES=-I.. -g -Wall +LDADD = ../libvncclient/libvncclient.a + +if HAVE_LIBSDL +SDLVIEWER=SDLvncviewer + +SDLvncviewer_CFLAGS=`sdl-config --cflags` + +SDLvncviewer_LDFLAGS=`sdl-config --libs` +endif + +noinst_PROGRAMS=ppmtest $(SDLVIEWER) + |