xrdp/sesman/chansrv/Makefile.am

75 lines
1.2 KiB
Makefile
Raw Normal View History

2012-05-26 03:36:55 +08:00
EXTRA_DEFINES =
EXTRA_INCLUDES =
EXTRA_LIBS =
EXTRA_FLAGS =
2012-11-03 14:10:36 +08:00
if XRDP_FUSE
EXTRA_DEFINES += -DXRDP_FUSE
EXTRA_LIBS += -lfuse
endif
if XRDP_OPUS
EXTRA_DEFINES += -DXRDP_OPUS
EXTRA_LIBS += -lopus
endif
if XRDP_MP3LAME
EXTRA_DEFINES += -DXRDP_MP3LAME
EXTRA_LIBS += -lmp3lame
endif
AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
2012-05-26 03:36:55 +08:00
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
$(EXTRA_DEFINES) \
2012-05-26 03:36:55 +08:00
-I$(top_srcdir)/common \
$(EXTRA_INCLUDES)
2009-04-20 01:16:46 +08:00
AM_CFLAGS = $(X_CFLAGS)
2009-04-20 01:16:46 +08:00
sbin_PROGRAMS = \
xrdp-chansrv
xrdp_chansrv_SOURCES = \
chansrv.c \
chansrv.h \
chansrv_common.c \
chansrv_common.h \
chansrv_fuse.c \
chansrv_fuse.h \
2009-04-22 12:34:45 +08:00
clipboard.c \
clipboard.h \
clipboard_common.h \
clipboard_file.c \
clipboard_file.h \
2012-07-25 11:47:53 +08:00
devredir.c \
devredir.h \
drdynvc.c \
drdynvc.h \
fifo.c \
fifo.h \
irp.c \
irp.h \
mlog.h \
rail.c \
rail.h \
smartcard.c \
smartcard.h \
2013-08-05 16:10:57 +08:00
smartcard_pcsc.c \
smartcard_pcsc.h \
sound.c \
sound.h \
2012-09-01 15:18:23 +08:00
xcommon.c \
xcommon.h
2009-04-20 01:16:46 +08:00
2012-05-26 03:36:55 +08:00
xrdp_chansrv_LDFLAGS = \
$(X_LIBS) \
2012-11-03 14:10:36 +08:00
$(EXTRA_FLAGS)
2012-05-26 03:36:55 +08:00
2009-04-20 01:16:46 +08:00
xrdp_chansrv_LDADD = \
$(top_builddir)/common/libcommon.la \
$(X_PRE_LIBS) -lXfixes -lXrandr -lX11 $(X_EXTRA_LIBS) \
2012-05-26 03:36:55 +08:00
$(EXTRA_LIBS)