wayland/compositor/Makefile.am

56 lines
1.1 KiB
Text
Raw Normal View History

2010-10-12 17:24:20 -04:00
noinst_PROGRAMS = compositor
2011-01-24 16:27:27 +00:00
AM_CPPFLAGS = \
-DDATADIR='"$(datadir)"' \
-I$(top_builddir)/wayland \
2011-01-24 16:01:26 +00:00
-I$(top_srcdir)/wayland \
$(COMPOSITOR_CFLAGS)
AM_CFLAGS = $(GCC_CFLAGS)
2010-10-12 17:24:20 -04:00
compositor_LDADD = \
$(top_builddir)/wayland/libwayland-server.la \
$(top_builddir)/wayland/libwayland-client.la \
2010-10-12 17:24:20 -04:00
$(COMPOSITOR_LIBS)
if ENABLE_DRM_COMPOSITOR
drm_compositor_sources = compositor-drm.c tty.c evdev.c
drm_sources = drm.c
endif
if ENABLE_X11_COMPOSITOR
x11_compositor_sources = compositor-x11.c
drm_sources = drm.c
endif
if ENABLE_WAYLAND_COMPOSITOR
wayland_compositor_sources = compositor-wayland.c
drm_sources = drm.c
endif
2010-10-12 17:24:20 -04:00
compositor_SOURCES = \
compositor.c \
compositor.h \
shell.c \
2010-10-12 17:24:20 -04:00
screenshooter.c \
screenshooter-protocol.c \
screenshooter-server-protocol.h \
shm.c \
$(drm_compositor_sources) \
$(x11_compositor_sources) \
$(wayland_compositor_sources) \
$(drm_sources)
2010-10-12 17:24:20 -04:00
2010-11-24 14:29:59 -05:00
udevrulesddir = $(sysconfdir)/udev/rules.d
2010-11-08 08:54:35 -05:00
2010-11-24 14:29:59 -05:00
dist_udevrulesd_DATA = \
2010-11-08 08:54:35 -05:00
70-wayland.rules
2010-10-12 17:24:20 -04:00
BUILT_SOURCES = \
screenshooter-server-protocol.h \
screenshooter-protocol.c
CLEANFILES = $(BUILT_SOURCES)
include $(top_srcdir)/wayland/scanner.mk