2010-11-19 18:52:24 -02:00
|
|
|
EXTRA_DIST = tcp.h
|
2009-05-19 04:23:49 +00:00
|
|
|
|
|
|
|
AM_CFLAGS = \
|
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
|
|
|
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
|
|
|
-DXRDP_PID_PATH=\"${localstatedir}/run\"
|
|
|
|
|
2008-08-10 17:59:36 +00:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir)/common \
|
|
|
|
-I$(top_srcdir)/sesman/libscp \
|
|
|
|
-I$(top_srcdir)/sesman
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
xrdp-sesrun \
|
2011-07-13 22:30:37 -07:00
|
|
|
xrdp-sesadmin \
|
2013-01-25 14:47:33 +01:00
|
|
|
xrdp-dis
|
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
|
|
xrdp-sestest \
|
2012-07-31 19:01:41 -07:00
|
|
|
xrdp-xcon
|
2008-08-10 17:59:36 +00:00
|
|
|
|
|
|
|
xrdp_sesrun_SOURCES = \
|
|
|
|
sesrun.c \
|
|
|
|
tcp.c \
|
2008-11-02 21:27:42 +00:00
|
|
|
config.c
|
2008-08-10 17:59:36 +00:00
|
|
|
|
|
|
|
xrdp_sestest_SOURCES = \
|
|
|
|
sestest.c
|
|
|
|
|
2008-09-11 20:23:15 +00:00
|
|
|
xrdp_sesadmin_SOURCES = \
|
|
|
|
sesadmin.c
|
|
|
|
|
2011-07-13 22:30:37 -07:00
|
|
|
xrdp_dis_SOURCES = \
|
|
|
|
dis.c
|
|
|
|
|
2012-07-31 19:01:41 -07:00
|
|
|
xrdp_xcon_SOURCES = \
|
|
|
|
xcon.c
|
|
|
|
|
2008-08-10 17:59:36 +00:00
|
|
|
xrdp_sesrun_LDADD = \
|
2012-07-13 16:18:02 -07:00
|
|
|
$(top_builddir)/common/libcommon.la
|
2008-08-10 17:59:36 +00:00
|
|
|
|
|
|
|
xrdp_sestest_LDADD = \
|
2012-07-13 16:18:02 -07:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
|
|
|
$(top_builddir)/sesman/libscp/libscp.la
|
2008-09-11 20:23:15 +00:00
|
|
|
|
|
|
|
xrdp_sesadmin_LDADD = \
|
2012-07-13 16:18:02 -07:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
|
|
|
$(top_builddir)/sesman/libscp/libscp.la
|
2012-07-31 19:01:41 -07:00
|
|
|
|
|
|
|
xrdp_xcon_LDADD = \
|
|
|
|
-L/usr/X11R6/lib \
|
|
|
|
-lX11
|