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