xrdp/common/Makefile.am

62 lines
1000 B
Makefile
Raw Normal View History

if XRDP_PIXMAN
PIXMAN_SOURCES =
else
PIXMAN_SOURCES = pixman-region16.c pixman-region.h
endif
EXTRA_DIST = pixman-region.c
include_HEADERS = \
xrdp_client_info.h \
xrdp_constants.h \
xrdp_rail.h
AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
-DXRDP_LOG_PATH=\"${localstatedir}/log\"
2017-01-04 15:54:55 +03:00
if XRDP_DEBUG
AM_CPPFLAGS += -DXRDP_DEBUG
endif
AM_CFLAGS = $(OPENSSL_CFLAGS)
module_LTLIBRARIES = \
2008-08-12 09:46:40 +04:00
libcommon.la
2008-08-03 11:48:32 +04:00
2008-08-12 09:46:40 +04:00
libcommon_la_SOURCES = \
arch.h \
crc16.h \
defines.h \
fifo.c \
fifo.h \
2008-08-03 11:48:32 +04:00
file.c \
file.h \
file_loc.h \
2008-08-03 11:48:32 +04:00
list.c \
list.h \
list16.c \
list16.h \
2008-08-03 11:48:32 +04:00
log.c \
log.h \
2008-08-03 11:48:32 +04:00
os_calls.c \
os_calls.h \
os_calls.h \
parse.h \
rail.h \
2008-08-03 11:48:32 +04:00
ssl_calls.c \
ssl_calls.h \
2008-09-01 02:52:22 +04:00
thread_calls.c \
thread_calls.h \
trans.c \
trans.h \
$(PIXMAN_SOURCES)
2008-08-06 09:06:03 +04:00
2008-08-12 09:46:40 +04:00
libcommon_la_LIBADD = \
-lpthread \
$(OPENSSL_LIBS) \
$(DLOPEN_LIBS)