2012-05-21 23:03:32 +04:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-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-05-24 00:04:14 +04:00
|
|
|
xwayland_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_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 \
|
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
|
|
|
|
|
|
|
|
@wayland_scanner_rules@
|