summaryrefslogtreecommitdiffstats
path: root/common/Makefile.am
blob: a3fd85fb137f1d4eac3c7d709fb937960ec65efb (plain)
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
EXTRA_DIST = d3des.h arch.h os_calls.h list.h file.h parse.h defines.h file_loc.h log.h os_calls.h ssl_calls.h thread_calls.h trans.h xrdp_constants.h


AM_CFLAGS = \
  -DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
  -DXRDP_SBIN_PATH=\"${sbindir}\" \
  -DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
  -DXRDP_PID_PATH=\"${localstatedir}/run\"

lib_LTLIBRARIES = \
  libcommon.la

libcommon_la_SOURCES = \
  d3des.c \
  file.c \
  list.c \
  log.c \
  os_calls.c \
  ssl_calls.c \
  thread_calls.c \
  trans.c

libcommon_la_LIBADD = \
  -lcrypto \
  -lpthread