2016-01-30 09:45:00 +03:00
|
|
|
AM_CPPFLAGS = \
|
2009-05-19 08:23:49 +04:00
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
|
|
|
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
2016-01-30 09:45:00 +03:00
|
|
|
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
2017-03-15 07:45:50 +03:00
|
|
|
-DXRDP_SOCKET_PATH=\"${socketdir}\" \
|
2008-08-10 21:59:36 +04:00
|
|
|
-I$(top_srcdir)/common \
|
|
|
|
-I$(top_srcdir)/sesman/libscp \
|
|
|
|
-I$(top_srcdir)/sesman
|
|
|
|
|
2017-01-04 15:54:55 +03:00
|
|
|
if XRDP_DEBUG
|
|
|
|
AM_CPPFLAGS += -DXRDP_DEBUG
|
|
|
|
endif
|
|
|
|
|
2016-01-30 22:42:39 +03:00
|
|
|
AM_CFLAGS = $(X_CFLAGS)
|
|
|
|
|
2008-08-10 21:59:36 +04:00
|
|
|
bin_PROGRAMS = \
|
|
|
|
xrdp-sesrun \
|
2011-07-14 09:30:37 +04:00
|
|
|
xrdp-sesadmin \
|
2013-01-25 17:47:33 +04:00
|
|
|
xrdp-dis
|
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
|
|
xrdp-sestest \
|
2012-08-01 06:01:41 +04:00
|
|
|
xrdp-xcon
|
2008-08-10 21:59:36 +04:00
|
|
|
|
|
|
|
xrdp_sesrun_SOURCES = \
|
2016-02-22 08:49:04 +03:00
|
|
|
config.c \
|
2008-08-10 21:59:36 +04:00
|
|
|
sesrun.c \
|
|
|
|
tcp.c \
|
2016-02-22 08:49:04 +03:00
|
|
|
tcp.h
|
2008-08-10 21:59:36 +04:00
|
|
|
|
|
|
|
xrdp_sestest_SOURCES = \
|
|
|
|
sestest.c
|
|
|
|
|
2008-09-12 00:23:15 +04:00
|
|
|
xrdp_sesadmin_SOURCES = \
|
|
|
|
sesadmin.c
|
|
|
|
|
2011-07-14 09:30:37 +04:00
|
|
|
xrdp_dis_SOURCES = \
|
|
|
|
dis.c
|
|
|
|
|
2012-08-01 06:01:41 +04:00
|
|
|
xrdp_xcon_SOURCES = \
|
|
|
|
xcon.c
|
|
|
|
|
2008-08-10 21:59:36 +04:00
|
|
|
xrdp_sesrun_LDADD = \
|
2012-07-14 03:18:02 +04:00
|
|
|
$(top_builddir)/common/libcommon.la
|
2008-08-10 21:59:36 +04:00
|
|
|
|
|
|
|
xrdp_sestest_LDADD = \
|
2012-07-14 03:18:02 +04:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
|
|
|
$(top_builddir)/sesman/libscp/libscp.la
|
2008-09-12 00:23:15 +04:00
|
|
|
|
|
|
|
xrdp_sesadmin_LDADD = \
|
2012-07-14 03:18:02 +04:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
|
|
|
$(top_builddir)/sesman/libscp/libscp.la
|
2012-08-01 06:01:41 +04:00
|
|
|
|
2016-01-30 22:42:39 +03:00
|
|
|
xrdp_xcon_LDFLAGS = \
|
|
|
|
$(X_LIBS)
|
|
|
|
|
2012-08-01 06:01:41 +04:00
|
|
|
xrdp_xcon_LDADD = \
|
2016-01-30 22:42:39 +03:00
|
|
|
$(X_PRE_LIBS) -lX11 $(X_EXTRA_LIBS)
|