~ubuntu-branches/ubuntu/natty/wayland/natty

« back to all changes in this revision

Viewing changes to clients/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-02-21 18:35:33 UTC
  • Revision ID: james.westby@ubuntu.com-20110221183533-4dm0eushai2b571k
Tags: upstream-0.1~git20101129.ac93a3d3
ImportĀ upstreamĀ versionĀ 0.1~git20101129.ac93a3d3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
noinst_PROGRAMS = gears flower screenshot terminal image view dnd smoke
 
2
noinst_LTLIBRARIES = libtoytoolkit.la
 
3
 
 
4
INCLUDES =                                      \
 
5
        -I$(top_srcdir)/wayland                 \
 
6
        -I$(top_builddir)/wayland                       \
 
7
        $(CLIENT_CFLAGS) $(POPPLER_CFLAGS)
 
8
 
 
9
LDADD = libtoytoolkit.la                                \
 
10
        $(top_builddir)/wayland/libwayland-client.la    \
 
11
        $(CLIENT_LIBS) -lrt -lm
 
12
 
 
13
AM_CPPFLAGS = -DDATADIR='"$(datadir)"'
 
14
 
 
15
libtoytoolkit_la_SOURCES =                      \
 
16
        window.c                                \
 
17
        window.h                                \
 
18
        wayland-glib.c                          \
 
19
        wayland-glib.h                          \
 
20
        cairo-util.c                            \
 
21
        cairo-util.h
 
22
 
 
23
flower_SOURCES = flower.c
 
24
smoke_SOURCES = smoke.c
 
25
gears_SOURCES = gears.c
 
26
screenshot_SOURCES = screenshot.c screenshooter-protocol.c
 
27
terminal_SOURCES = terminal.c
 
28
image_SOURCES = image.c
 
29
view_SOURCES = view.c
 
30
dnd_SOURCES = dnd.c
 
31
 
 
32
BUILT_SOURCES =                                 \
 
33
        screenshooter-client-protocol.h         \
 
34
        screenshooter-protocol.c
 
35
 
 
36
CLEANFILES = $(BUILT_SOURCES)
 
37
 
 
38
include $(top_srcdir)/wayland/scanner.mk
 
39
 
 
40
terminal_LDADD = $(LDADD) -lutil
 
41
view_LDADD = $(LDADD) $(POPPLER_LIBS)