2016-12-18 09:43:30 +03:00
|
|
|
EXTRA_DIST = \
|
|
|
|
simple.c \
|
|
|
|
vrplayer.c \
|
|
|
|
vrplayer.mk
|
|
|
|
|
2017-03-15 07:45:50 +03:00
|
|
|
AM_CPPFLAGS = \
|
2023-06-14 15:59:55 +03:00
|
|
|
-DXRDP_SOCKET_ROOT_PATH=\"${socketdir}\" \
|
2017-03-15 07:45:50 +03:00
|
|
|
-I$(top_srcdir)/common
|
|
|
|
|
2016-02-10 21:24:09 +03:00
|
|
|
module_LTLIBRARIES = \
|
2012-08-02 21:48:59 +04:00
|
|
|
libxrdpapi.la
|
|
|
|
|
|
|
|
libxrdpapi_la_SOURCES = \
|
2016-02-22 08:49:04 +03:00
|
|
|
xrdpapi.c \
|
|
|
|
xrdpapi.h
|
2022-03-22 12:28:14 +03:00
|
|
|
|
|
|
|
libxrdpapi_la_LIBADD = \
|
|
|
|
$(top_builddir)/common/libcommon.la
|
2022-05-19 15:19:25 +03:00
|
|
|
|
|
|
|
# Build the 'simple' example program, so it's added to the CI
|
|
|
|
noinst_PROGRAMS = xrdp-xrdpapi-simple
|
|
|
|
|
|
|
|
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
|