weston/compositor/Makefile.am

50 lines
983 B
Makefile
Raw Normal View History

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