You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xrdp-proprietary/sesman/Makefile.am

65 lines
1010 B

16 years ago
INCLUDES = \
-I$(top_srcdir)/common \
-I$(top_srcdir)/sesman/libscp
if SESMAN_NOPAM
AUTH_C = verify_user.c
AUTH_LIB = -lcrypt
else
if SESMAN_PAMUSERPASS
AUTH_C = verify_user_pam_userpass.c
AUTH_LIB = -lpam -lpam_userpass
else
if SESMAN_KERBEROS
AUTH_C = verify_user_kerberos.c
AUTH_LIB = -lkrb5
else
AUTH_C = verify_user_pam.c
AUTH_LIB = -lpam
endif
endif
endif
sbin_PROGRAMS = \
16 years ago
xrdp-sesman \
xrdp-sessvc
xrdp_sesman_SOURCES = \
scp.c \
scp_v0.c \
scp_v1.c \
sesman.c \
session.c \
sig.c \
thread.c \
lock.c \
access.c \
config.c \
env.c \
$(AUTH_C)
16 years ago
xrdp_sessvc_SOURCES = \
sessvc.c
xrdp_sesman_LDADD = \
$(top_srcdir)/common/libcommon.la \
16 years ago
$(top_srcdir)/sesman/libscp/libscp.la \
$(AUTH_LIB)
16 years ago
xrdp_sessvc_LDADD = \
$(top_srcdir)/common/libcommon.la
sesmansysconfdir=$(sysconfdir)/xrdp
sesmansysconf_DATA = \
sesman.ini \
startwm.sh
16 years ago
16 years ago
SUBDIRS = \
libscp \
tools
# must be tab below
install-data-hook:
chmod 755 $(DESTDIR)$(sysconfdir)/xrdp/startwm.sh