2016-01-29 22:45:00 -08:00
|
|
|
AM_CPPFLAGS = \
|
2009-05-19 04:23:49 +00:00
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
|
|
|
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
2016-01-29 22:45:00 -08:00
|
|
|
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
2008-08-03 07:48:32 +00:00
|
|
|
-I$(top_srcdir)/common
|
|
|
|
|
2017-01-04 12:54:55 +00:00
|
|
|
if XRDP_DEBUG
|
|
|
|
AM_CPPFLAGS += -DXRDP_DEBUG
|
|
|
|
endif
|
|
|
|
|
2016-02-10 10:24:09 -08:00
|
|
|
module_LTLIBRARIES = \
|
2008-08-03 07:48:32 +00:00
|
|
|
libvnc.la
|
|
|
|
|
2016-02-21 21:49:04 -08:00
|
|
|
libvnc_la_SOURCES = \
|
|
|
|
vnc.c \
|
|
|
|
vnc.h
|
2008-08-03 07:48:32 +00:00
|
|
|
|
|
|
|
libvnc_la_LIBADD = \
|
2012-07-13 16:18:02 -07:00
|
|
|
$(top_builddir)/common/libcommon.la
|
2016-12-24 23:54:31 -08:00
|
|
|
|
2018-01-30 01:00:24 -08:00
|
|
|
if !MACOS
|
2016-12-24 23:54:31 -08:00
|
|
|
libvnc_la_LDFLAGS = -avoid-version -module
|
2018-01-30 01:00:24 -08:00
|
|
|
endif
|