File: Makefile.am

package info (click to toggle)
xrdp 0.10.5-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,104 kB
  • sloc: ansic: 107,426; sh: 5,852; asm: 4,742; cpp: 2,555; makefile: 1,474
file content (20 lines) | stat: -rw-r--r-- 416 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AM_CPPFLAGS = \
  -DXRDP_CFG_PATH=\"${sysconfdir}/${sysconfsubdir}\" \
  -DXRDP_SBIN_PATH=\"${sbindir}\" \
  -DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
  -DXRDP_PID_PATH=\"${localstatedir}/run\" \
  -I$(top_srcdir)/common

module_LTLIBRARIES = \
  libxup.la

libxup_la_SOURCES = \
  xup.c \
  xup.h

libxup_la_LIBADD = \
  $(top_builddir)/common/libcommon.la

if !MACOS
libxup_la_LDFLAGS = -avoid-version -module
endif