xrdp/sesman/tools/Makefile.am

62 lines
1.2 KiB
Makefile
Raw Normal View History

AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
-I$(top_srcdir)/sesman/libsesman \
2008-08-10 21:59:36 +04:00
-I$(top_srcdir)/common \
-I$(top_srcdir)/libipm
2008-08-10 21:59:36 +04: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 \
xrdp-dis
noinst_PROGRAMS = \
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
xrdp_sesadmin_SOURCES = \
2022-02-14 23:13:03 +03:00
sesadmin.c \
tools_common.h \
tools_common.c
2011-07-14 09:30:37 +04:00
xrdp_dis_SOURCES = \
dis.c
xrdp_dis_LDADD = \
$(top_builddir)/common/libcommon.la
2012-08-01 06:01:41 +04:00
xrdp_xcon_SOURCES = \
xcon.c
xrdp_authtest_SOURCES = \
authtest.c
2008-08-10 21:59:36 +04:00
xrdp_sesrun_LDADD = \
$(top_builddir)/sesman/libsesman/libsesman.la \
$(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
xrdp_sesadmin_LDADD = \
$(top_builddir)/sesman/libsesman/libsesman.la \
$(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
xrdp_xcon_LDFLAGS = \
$(X_LIBS)
2012-08-01 06:01:41 +04:00
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)