xrdp/common/Makefile.am

47 lines
745 B
Makefile
Raw Normal View History

EXTRA_DIST = \
arch.h \
defines.h \
file.h \
file_loc.h \
list.h \
list16.h \
2014-03-12 19:43:14 -07:00
fifo.h \
log.h \
os_calls.h \
os_calls.h \
parse.h \
rail.h \
ssl_calls.h \
thread_calls.h \
trans.h \
xrdp_client_info.h \
xrdp_constants.h \
xrdp_rail.h \
crc16.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\"
2008-08-06 05:06:03 +00:00
lib_LTLIBRARIES = \
2008-08-12 05:46:40 +00:00
libcommon.la
2008-08-03 07:48:32 +00:00
2008-08-12 05:46:40 +00:00
libcommon_la_SOURCES = \
2008-08-03 07:48:32 +00:00
file.c \
list.c \
list16.c \
2014-03-12 19:43:14 -07:00
fifo.c \
2008-08-03 07:48:32 +00:00
log.c \
os_calls.c \
ssl_calls.c \
2008-08-31 22:52:22 +00:00
thread_calls.c \
2014-11-25 18:55:37 -08:00
trans.c
2008-08-06 05:06:03 +00:00
2008-08-12 05:46:40 +00:00
libcommon_la_LIBADD = \
2008-08-06 05:06:03 +00:00
-lcrypto \
2011-05-28 23:56:10 -07:00
-lssl \
2008-08-06 05:06:03 +00:00
-lpthread