xrdp/sesman/Makefile.am

88 lines
1.8 KiB
Makefile
Raw Normal View History

EXTRA_DIST = \
Doxyfile
AM_CPPFLAGS = \
-DXRDP_SYSCONF_PATH=\"${sysconfdir}\" \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_LIBEXEC_PATH=\"${libexecdir}/xrdp\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
-DXRDP_SOCKET_PATH=\"${socketdir}\" \
2023-02-21 04:50:46 +03:00
-DXRDP_PAMCONF_PATH=\"${pamconfdir}\" \
-DSESMAN_RUNTIME_PATH=\"${sesmanruntimedir}\" \
2008-08-03 11:48:32 +04:00
-I$(top_srcdir)/common \
2022-02-14 12:16:42 +03:00
-I$(top_srcdir)/libipm
2008-08-03 11:48:32 +04:00
sbin_PROGRAMS = \
2008-11-25 07:00:53 +03:00
xrdp-sesman
2008-08-03 11:48:32 +04:00
xrdp_sesman_SOURCES = \
access.c \
access.h \
auth.h \
config.c \
config.h \
env.c \
env.h \
lock_uds.c \
lock_uds.h \
2022-02-14 12:16:42 +03:00
scp_process.c \
scp_process.h \
2008-08-03 11:48:32 +04:00
sesman.c \
sesman.h \
2008-08-03 11:48:32 +04:00
session.c \
session.h \
session_list.c \
session_list.h \
2008-08-03 11:48:32 +04:00
sig.c \
sig.h \
xauth.c \
xauth.h \
xwait.c \
xwait.h
# Possible authentication modules
# See https://www.gnu.org/software/automake/manual/html_node/Conditional-Sources.html
EXTRA_xrdp_sesman_SOURCES = \
verify_user.c \
verify_user_bsd.c \
verify_user_kerberos.c \
verify_user_pam.c \
verify_user_pam_userpass.c
# Make sure the right authentication module is pulled in
xrdp_sesman_DEPENDENCIES = $(AUTHMOD_OBJ)
2008-08-03 11:48:32 +04:00
# Make sure the right authentication module is linked with
2008-08-03 11:48:32 +04:00
xrdp_sesman_LDADD = \
$(AUTHMOD_OBJ) \
2022-02-14 12:16:42 +03:00
$(top_builddir)/libipm/libipm.la \
$(top_builddir)/common/libcommon.la \
$(AUTHMOD_LIB) \
2011-07-06 08:50:09 +04:00
-lpthread
2008-08-03 11:48:32 +04:00
sesmansysconfdir=$(sysconfdir)/xrdp
SUBST_VARS = sed \
-e 's|@sesmansysconfdir[@]|$(sesmansysconfdir)|g'
subst_verbose = $(subst_verbose_@AM_V@)
subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@)
subst_verbose_0 = @echo " SUBST $@";
SUFFIXES = .in
.in:
$(subst_verbose)$(SUBST_VARS) $< > $@
dist_sesmansysconf_DATA = \
sesman.ini
dist_sesmansysconf_SCRIPTS = \
startwm.sh \
reconnectwm.sh
2008-08-03 11:48:32 +04:00
2008-08-10 22:01:51 +04:00
SUBDIRS = \
2008-11-25 07:00:53 +03:00
tools \
2009-04-19 21:16:46 +04:00
chansrv