2016-01-30 09:45:00 +03:00
|
|
|
AM_CPPFLAGS = \
|
2009-05-19 08:23:49 +04:00
|
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
2023-06-14 15:59:55 +03:00
|
|
|
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
|
2023-03-20 17:59:05 +03:00
|
|
|
-I$(top_srcdir)/sesman/libsesman \
|
2008-08-10 21:59:36 +04:00
|
|
|
-I$(top_srcdir)/common \
|
2023-03-20 17:59:05 +03:00
|
|
|
-I$(top_srcdir)/libipm
|
2008-08-10 21:59:36 +04:00
|
|
|
|
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 = \
|
2022-12-02 20:02:46 +03:00
|
|
|
xrdp-authtest \
|
2012-08-01 06:01:41 +04:00
|
|
|
xrdp-xcon
|
2008-08-10 21:59:36 +04:00
|
|
|
|
|
|
|
xrdp_sesrun_SOURCES = \
|
2022-02-14 23:13:03 +03:00
|
|
|
sesrun.c \
|
|
|
|
tools_common.h \
|
|
|
|
tools_common.c
|
2008-08-10 21:59:36 +04:00
|
|
|
|
2008-09-12 00:23:15 +04:00
|
|
|
xrdp_sesadmin_SOURCES = \
|
2022-02-14 23:13:03 +03:00
|
|
|
sesadmin.c \
|
|
|
|
tools_common.h \
|
|
|
|
tools_common.c
|
2008-09-12 00:23:15 +04:00
|
|
|
|
2011-07-14 09:30:37 +04:00
|
|
|
xrdp_dis_SOURCES = \
|
|
|
|
dis.c
|
|
|
|
|
2021-04-13 14:11:19 +03:00
|
|
|
xrdp_dis_LDADD = \
|
|
|
|
$(top_builddir)/common/libcommon.la
|
|
|
|
|
2012-08-01 06:01:41 +04:00
|
|
|
xrdp_xcon_SOURCES = \
|
|
|
|
xcon.c
|
|
|
|
|
2022-12-02 20:02:46 +03:00
|
|
|
xrdp_authtest_SOURCES = \
|
|
|
|
authtest.c
|
|
|
|
|
2008-08-10 21:59:36 +04:00
|
|
|
xrdp_sesrun_LDADD = \
|
2023-03-20 17:59:05 +03:00
|
|
|
$(top_builddir)/sesman/libsesman/libsesman.la \
|
2021-10-07 15:58:54 +03:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
2022-02-14 23:13:03 +03:00
|
|
|
$(top_builddir)/libipm/libipm.la
|
2008-08-10 21:59:36 +04:00
|
|
|
|
2008-09-12 00:23:15 +04:00
|
|
|
xrdp_sesadmin_LDADD = \
|
2023-03-20 17:59:05 +03:00
|
|
|
$(top_builddir)/sesman/libsesman/libsesman.la \
|
2012-07-14 03:18:02 +04:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
2022-02-14 23:13:03 +03:00
|
|
|
$(top_builddir)/libipm/libipm.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)
|
2022-12-02 20:02:46 +03:00
|
|
|
|
|
|
|
xrdp_authtest_LDADD = \
|
2023-03-20 17:59:05 +03:00
|
|
|
$(top_builddir)/sesman/libsesman/libsesman.la \
|
2022-12-02 20:02:46 +03:00
|
|
|
$(top_builddir)/common/libcommon.la \
|
2022-12-13 14:06:26 +03:00
|
|
|
$(top_builddir)/libipm/libipm.la \
|
2022-12-02 20:02:46 +03:00
|
|
|
$(AUTHMOD_LIB)
|