File: Makefile.am

package info (click to toggle)
xrdp 0.10.5-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,104 kB
  • sloc: ansic: 107,426; sh: 5,852; asm: 4,742; cpp: 2,555; makefile: 1,474
file content (77 lines) | stat: -rw-r--r-- 1,431 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
if XRDP_PIXMAN
  PIXMAN_SOURCES =
else
  PIXMAN_SOURCES = pixman-region16.c pixman-region.h
endif

EXTRA_DIST = pixman-region.c

include_HEADERS = \
  ms-erref.h \
  ms-fscc.h \
  ms-rdpbcgr.h \
  ms-rdpeclip.h \
  ms-rdpefs.h \
  ms-rdpegdi.h \
  ms-rdpele.h \
  ms-rdperp.h \
  ms-rdpedisp.h \
  ms-smb2.h \
  xrdp_client_info.h \
  xrdp_constants.h \
  xrdp_rail.h \
  xrdp_sockets.h

AM_CPPFLAGS = \
  -DXRDP_CFG_PATH=\"${sysconfdir}/${sysconfsubdir}\" \
  -DXRDP_SBIN_PATH=\"${sbindir}\" \
  -DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
  -DXRDP_PID_PATH=\"${localstatedir}/run\" \
  -DXRDP_LOG_PATH=\"${localstatedir}/log\"

# -no-suppress is an automake-specific flag which is needed
# to prevent us missing compiler errors in some circumstances
# (see https://github.com/neutrinolabs/xrdp/pull/1843 )
AM_CFLAGS = -no-suppress $(OPENSSL_CFLAGS)

module_LTLIBRARIES = \
  libcommon.la

libcommon_la_SOURCES = \
  arch.h \
  base64.h \
  base64.c \
  channel_defs.h \
  defines.h \
  fifo.c \
  fifo.h \
  file.c \
  file.h \
  guid.c \
  guid.h \
  list.c \
  list.h \
  list16.c \
  list16.h \
  log.c \
  log.h \
  os_calls.c \
  os_calls.h \
  parse.c \
  parse.h \
  rail.h \
  ssl_calls.c \
  ssl_calls.h \
  string_calls.c \
  string_calls.h \
  thread_calls.c \
  thread_calls.h \
  trans.c \
  trans.h \
  unicode_defines.h \
  $(PIXMAN_SOURCES)

libcommon_la_LIBADD = \
  -lpthread \
  $(OPENSSL_LIBS) \
  $(DLOPEN_LIBS)