Adam Tkac | 81e616e | 2008-04-17 16:17:12 +0000 | [diff] [blame] | 1 | bin_PROGRAMS = vncviewer |
| 2 | |
Adam Tkac | 28ca8f6 | 2008-09-29 15:06:39 +0000 | [diff] [blame] | 3 | man1_MANS = vncviewer.man |
| 4 | |
Adam Tkac | e3522bc | 2008-07-14 09:56:02 +0000 | [diff] [blame] | 5 | HDRS = AboutDialog.h CConn.h DesktopWindow.h gettext.h InfoDialog.h \ |
| 6 | OptionsDialog.h parameters.h PasswdDialog.h ServerDialog.h |
| 7 | |
| 8 | vncviewer_SOURCES = $(HDRS) DesktopWindow.cxx CConn.cxx vncviewer.cxx \ |
| 9 | buildtime.c |
Adam Tkac | 48c3d0c | 2009-09-04 12:32:07 +0000 | [diff] [blame] | 10 | # X_CFLAGS are really CPPFLAGS |
| 11 | vncviewer_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/unix \ |
| 12 | -I$(top_srcdir)/unix/tx -I$(top_srcdir)/intl \ |
| 13 | -DLOCALEDIR=\"$(localedir)\" @X_CFLAGS@ |
Adam Tkac | 81e616e | 2008-04-17 16:17:12 +0000 | [diff] [blame] | 14 | |
DRC | 09e2ff1 | 2010-02-14 02:11:04 +0000 | [diff] [blame] | 15 | vncviewer_LDADD = $(top_builddir)/unix/tx/libtx.la \ |
| 16 | $(top_builddir)/common/rfb/librfb.la \ |
| 17 | $(top_builddir)/common/network/libnetwork.la \ |
| 18 | $(top_builddir)/common/rdr/librdr.la \ |
DRC | 2e0b965 | 2010-10-01 09:31:44 +0000 | [diff] [blame] | 19 | @X_PRE_LIBS@ @X_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@ @GNUTLS_LIBS@ # @LIBINTL@ |
Adam Tkac | 65b24fe | 2008-10-22 11:19:25 +0000 | [diff] [blame] | 20 | |
DRC | 23b3f5c | 2010-10-01 09:55:03 +0000 | [diff] [blame^] | 21 | if INCLUDED_ZLIB |
| 22 | vncviewer_LDADD += $(top_builddir)/common/zlib/libz.la |
| 23 | endif |
| 24 | |
Adam Tkac | 65b24fe | 2008-10-22 11:19:25 +0000 | [diff] [blame] | 25 | EXTRA_DIST = vncviewer.man |