xrdp/sesman/chansrv/Makefile.am

69 lines
1.2 KiB
Makefile
Raw Normal View History

AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
-I$(top_srcdir)/common
CHANSRV_EXTRA_LIBS =
2012-11-03 10:10:36 +04:00
if XRDP_FUSE
AM_CPPFLAGS += -DXRDP_FUSE $(FUSE_CFLAGS)
CHANSRV_EXTRA_LIBS += $(FUSE_LIBS)
2012-11-03 10:10:36 +04:00
endif
if XRDP_OPUS
AM_CPPFLAGS += -DXRDP_OPUS
CHANSRV_EXTRA_LIBS += -lopus
endif
if XRDP_MP3LAME
AM_CPPFLAGS += -DXRDP_MP3LAME
CHANSRV_EXTRA_LIBS += -lmp3lame
endif
AM_CFLAGS = $(X_CFLAGS)
2009-04-19 21:16:46 +04: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 08:34:45 +04:00
clipboard.c \
clipboard.h \
clipboard_common.h \
clipboard_file.c \
clipboard_file.h \
2012-07-25 07:47:53 +04: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 12:10:57 +04:00
smartcard_pcsc.c \
smartcard_pcsc.h \
sound.c \
sound.h \
2012-09-01 11:18:23 +04:00
xcommon.c \
xcommon.h
2009-04-19 21:16:46 +04:00
2012-05-25 23:36:55 +04:00
xrdp_chansrv_LDFLAGS = \
$(X_LIBS)
2012-05-25 23:36:55 +04:00
2009-04-19 21:16:46 +04:00
xrdp_chansrv_LDADD = \
$(top_builddir)/common/libcommon.la \
$(X_PRE_LIBS) -lXfixes -lXrandr -lX11 $(X_EXTRA_LIBS) \
$(CHANSRV_EXTRA_LIBS)