You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
976 B
43 lines
976 B
13 years ago
|
AM_CPPFLAGS = \
|
||
12 years ago
|
-I$(top_srcdir)/shared \
|
||
11 years ago
|
-I$(top_srcdir)/src \
|
||
12 years ago
|
-I$(top_builddir)/src \
|
||
11 years ago
|
-I$(top_builddir)/xwayland \
|
||
13 years ago
|
-DDATADIR='"$(datadir)"' \
|
||
|
-DMODULEDIR='"$(moduledir)"' \
|
||
|
-DLIBEXECDIR='"$(libexecdir)"' \
|
||
|
-DXSERVER_PATH='"@XSERVER_PATH@"'
|
||
|
|
||
|
moduledir = @libdir@/weston
|
||
13 years ago
|
module_LTLIBRARIES = xwayland.la
|
||
13 years ago
|
|
||
13 years ago
|
xwayland = xwayland.la
|
||
|
xwayland_la_LDFLAGS = -module -avoid-version
|
||
|
xwayland_la_LIBADD = \
|
||
13 years ago
|
$(XWAYLAND_LIBS) \
|
||
12 years ago
|
$(top_builddir)/shared/libshared-cairo.la
|
||
12 years ago
|
xwayland_la_CFLAGS = \
|
||
|
$(GCC_CFLAGS) \
|
||
|
$(COMPOSITOR_CFLAGS) \
|
||
|
$(PIXMAN_CFLAGS) \
|
||
|
$(CAIRO_CFLAGS)
|
||
13 years ago
|
xwayland_la_SOURCES = \
|
||
|
xwayland.h \
|
||
13 years ago
|
window-manager.c \
|
||
13 years ago
|
selection.c \
|
||
11 years ago
|
dnd.c \
|
||
13 years ago
|
launcher.c \
|
||
13 years ago
|
xserver-protocol.c \
|
||
|
xserver-server-protocol.h \
|
||
|
hash.c \
|
||
|
hash.h
|
||
|
|
||
|
BUILT_SOURCES = \
|
||
|
xserver-protocol.c \
|
||
|
xserver-server-protocol.h
|
||
|
|
||
12 years ago
|
CLEANFILES = $(BUILT_SOURCES)
|
||
|
|
||
11 years ago
|
wayland_protocoldir = $(top_srcdir)/protocol
|
||
|
include $(top_srcdir)/wayland-scanner.mk
|