1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
EXTRA_DIST = \
simple.c \
connectmon.c \
vrplayer.c \
vrplayer.mk
AM_CPPFLAGS = \
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
-I$(top_srcdir)/common
module_LTLIBRARIES = \
libxrdpapi.la
libxrdpapi_la_SOURCES = \
xrdpapi.c \
xrdpapi.h
libxrdpapi_la_LIBADD = \
$(top_builddir)/common/libcommon.la
# Build the 'simple' example programs, so they are added to the CI
noinst_PROGRAMS = \
xrdp-xrdpapi-connectmon \
xrdp-xrdpapi-simple
xrdp_xrdpapi_connectmon_SOURCES = \
connectmon.c
# If you change this, update the standalone build instructions in connectmon.c
xrdp_xrdpapi_connectmon_LDADD = \
libxrdpapi.la \
$(top_builddir)/common/libcommon.la
xrdp_xrdpapi_simple_SOURCES = \
simple.c
# If you change this, update the standalone build instructions in simple.c
xrdp_xrdpapi_simple_LDADD = \
libxrdpapi.la \
$(top_builddir)/common/libcommon.la
|