46 lines
881 B
Makefile
46 lines
881 B
Makefile
AM_CPPFLAGS = \
|
|
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
|
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
|
-DXRDP_LIBEXEC_PATH=\"${libexecdir}/xrdp\" \
|
|
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
|
|
-I$(top_srcdir)/sesman/libsesman \
|
|
-I$(top_srcdir)/libipm \
|
|
-I$(top_srcdir)/common
|
|
|
|
SESEXEC_EXTRA_LIBS =
|
|
|
|
if XRDP_UTMP
|
|
AM_CPPFLAGS += -DUSE_UTMP
|
|
endif
|
|
|
|
pkglibexec_PROGRAMS = \
|
|
xrdp-sesexec
|
|
|
|
xrdp_sesexec_SOURCES = \
|
|
sesexec.c \
|
|
sesexec.h \
|
|
session.c \
|
|
session.h \
|
|
eicp_server.c \
|
|
eicp_server.h \
|
|
ercp_server.c \
|
|
ercp_server.h \
|
|
env.c \
|
|
env.h \
|
|
login_info.c \
|
|
login_info.h \
|
|
sessionrecord.c \
|
|
sessionrecord.h \
|
|
xauth.c \
|
|
xauth.h \
|
|
xwait.c \
|
|
xwait.h
|
|
|
|
xrdp_sesexec_LDFLAGS =
|
|
|
|
xrdp_sesexec_LDADD = \
|
|
$(top_builddir)/sesman/libsesman/libsesman.la \
|
|
$(top_builddir)/libipm/libipm.la \
|
|
$(top_builddir)/common/libcommon.la \
|
|
$(SESEXEC_EXTRA_LIBS)
|