xrdp/sesman/tools/Makefile.am
matt335672 4d80cf6d77 Move SCP synch calls from sesman tools to library
The sesman tools have some private functions to make syncronous calls
to sesman over SCP. This commit moves these calls to a new module
scp_sync in libipm so that they can be utilised by other parts of
xrdp (i.e. chansrv)
2024-10-22 12:21:25 +01:00

58 lines
1.1 KiB
Makefile

AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
-I$(top_srcdir)/sesman/libsesman \
-I$(top_srcdir)/common \
-I$(top_srcdir)/libipm
AM_CFLAGS = $(X_CFLAGS)
bin_PROGRAMS = \
xrdp-sesrun \
xrdp-sesadmin \
xrdp-dis
noinst_PROGRAMS = \
xrdp-authtest \
xrdp-xcon
xrdp_sesrun_SOURCES = \
sesrun.c
xrdp_sesadmin_SOURCES = \
sesadmin.c
xrdp_dis_SOURCES = \
dis.c
xrdp_dis_LDADD = \
$(top_builddir)/common/libcommon.la
xrdp_xcon_SOURCES = \
xcon.c
xrdp_authtest_SOURCES = \
authtest.c
xrdp_sesrun_LDADD = \
$(top_builddir)/sesman/libsesman/libsesman.la \
$(top_builddir)/common/libcommon.la \
$(top_builddir)/libipm/libipm.la
xrdp_sesadmin_LDADD = \
$(top_builddir)/sesman/libsesman/libsesman.la \
$(top_builddir)/common/libcommon.la \
$(top_builddir)/libipm/libipm.la
xrdp_xcon_LDFLAGS = \
$(X_LIBS)
xrdp_xcon_LDADD = \
$(X_PRE_LIBS) -lX11 $(X_EXTRA_LIBS)
xrdp_authtest_LDADD = \
$(top_builddir)/sesman/libsesman/libsesman.la \
$(top_builddir)/common/libcommon.la \
$(top_builddir)/libipm/libipm.la \
$(AUTHMOD_LIB)