weston/clients/Makefile.am

61 lines
1.2 KiB
Makefile
Raw Normal View History

noinst_PROGRAMS = \
gears \
flower \
screenshot \
terminal \
image \
$(poppler_programs) \
dnd \
smoke \
2011-01-15 02:40:17 +03:00
resizor \
simple-client
2010-10-13 01:24:20 +04:00
noinst_LTLIBRARIES = libtoytoolkit.la
INCLUDES = \
-I$(top_srcdir)/wayland \
-I$(top_builddir)/wayland \
$(CLIENT_CFLAGS)
2010-10-13 01:24:20 +04:00
LDADD = libtoytoolkit.la \
$(top_builddir)/wayland/libwayland-client.la \
$(CLIENT_LIBS) -lrt -lm
2010-10-13 01:24:20 +04:00
AM_CFLAGS = $(GCC_CFLAGS)
2010-10-13 01:24:20 +04:00
AM_CPPFLAGS = -DDATADIR='"$(datadir)"'
libtoytoolkit_la_SOURCES = \
window.c \
window.h \
wayland-glib.c \
wayland-glib.h \
cairo-util.c \
cairo-util.h
flower_SOURCES = flower.c
smoke_SOURCES = smoke.c
2010-10-13 01:24:20 +04:00
gears_SOURCES = gears.c
screenshot_SOURCES = screenshot.c screenshooter-protocol.c
terminal_SOURCES = terminal.c
image_SOURCES = image.c
dnd_SOURCES = dnd.c
resizor_SOURCES = resizor.c
2011-01-15 02:40:17 +03:00
simple_client_SOURCES = simple-client.c
2010-10-13 01:24:20 +04:00
BUILT_SOURCES = \
screenshooter-client-protocol.h \
screenshooter-protocol.c
CLEANFILES = $(BUILT_SOURCES)
include $(top_srcdir)/wayland/scanner.mk
terminal_LDADD = $(LDADD) -lutil
if HAVE_POPPLER
poppler_programs = view
view_SOURCES = view.c
2010-10-13 01:24:20 +04:00
view_LDADD = $(LDADD) $(POPPLER_LIBS)
view_CPPFLAGS = $(POPPLER_CFLAGS)
endif