xrdp/freerdp1/Makefile.am

29 lines
583 B
Makefile
Raw Normal View History

2012-02-07 23:51:09 +04:00
EXTRA_DIST = xrdp-freerdp.h
EXTRA_DEFINES =
if XRDP_DEBUG
EXTRA_DEFINES += -DXRDP_DEBUG
else
EXTRA_DEFINES += -DXRDP_NODEBUG
endif
2012-02-07 23:51:09 +04:00
AM_CFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
$(EXTRA_DEFINES)
2012-02-07 23:51:09 +04:00
INCLUDES = \
-I$(top_srcdir)/common \
$(FREERDP_CFLAGS)
lib_LTLIBRARIES = \
libxrdpfreerdp1.la
2012-02-08 04:36:16 +04:00
libxrdpfreerdp1_la_SOURCES = xrdp-freerdp.c xrdp-color.c
2012-02-07 23:51:09 +04:00
libxrdpfreerdp1_la_LIBADD = \
$(top_builddir)/common/libcommon.la \
2012-02-07 23:51:09 +04:00
$(FREERDP_LIBS)