2012-05-21 23:03:32 +04:00
|
|
|
AM_CPPFLAGS = \
|
2013-02-16 05:53:20 +04:00
|
|
|
-I$(top_srcdir)/shared \
|
2013-12-04 04:38:15 +04:00
|
|
|
-I$(top_srcdir)/src \
|
2013-02-20 23:47:43 +04:00
|
|
|
-I$(top_builddir)/src \
|
2013-12-04 04:38:15 +04:00
|
|
|
-I$(top_builddir)/xwayland \
|
2012-05-21 23:03:32 +04:00
|
|
|
-DDATADIR='"$(datadir)"' \
|
|
|
|
-DMODULEDIR='"$(moduledir)"' \
|
|
|
|
-DLIBEXECDIR='"$(libexecdir)"' \
|
|
|
|
-DXSERVER_PATH='"@XSERVER_PATH@"'
|
|
|
|
|
|
|
|
moduledir = @libdir@/weston
|
2012-05-24 00:04:14 +04:00
|
|
|
module_LTLIBRARIES = xwayland.la
|
2012-05-21 23:03:32 +04:00
|
|
|
|
2012-05-24 00:04:14 +04:00
|
|
|
xwayland = xwayland.la
|
|
|
|
xwayland_la_LDFLAGS = -module -avoid-version
|
|
|
|
xwayland_la_LIBADD = \
|
2012-06-04 21:01:44 +04:00
|
|
|
$(XWAYLAND_LIBS) \
|
2012-11-29 21:23:36 +04:00
|
|
|
$(top_builddir)/shared/libshared-cairo.la
|
2012-11-30 15:37:28 +04:00
|
|
|
xwayland_la_CFLAGS = \
|
|
|
|
$(GCC_CFLAGS) \
|
|
|
|
$(COMPOSITOR_CFLAGS) \
|
|
|
|
$(PIXMAN_CFLAGS) \
|
|
|
|
$(CAIRO_CFLAGS)
|
2012-06-26 00:00:48 +04:00
|
|
|
xwayland_la_SOURCES = \
|
|
|
|
xwayland.h \
|
2012-05-22 00:57:37 +04:00
|
|
|
window-manager.c \
|
2012-05-21 23:52:02 +04:00
|
|
|
selection.c \
|
2013-09-05 08:12:26 +04:00
|
|
|
dnd.c \
|
2012-05-22 00:48:05 +04:00
|
|
|
launcher.c \
|
2012-05-21 23:03:32 +04:00
|
|
|
xserver-protocol.c \
|
|
|
|
xserver-server-protocol.h \
|
|
|
|
hash.c \
|
|
|
|
hash.h
|
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
xserver-protocol.c \
|
|
|
|
xserver-server-protocol.h
|
|
|
|
|
2013-06-27 04:45:07 +04:00
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
|
2013-08-20 11:56:52 +04:00
|
|
|
wayland_protocoldir = $(top_srcdir)/protocol
|
|
|
|
include $(top_srcdir)/wayland-scanner.mk
|