diff options
| author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-02-21 15:22:06 -0500 |
|---|---|---|
| committer | Kristian Høgsberg <krh@redhat.com> | 2009-02-21 15:48:35 -0500 |
| commit | 0de19eb6888ce3f7d87a8478216f05385be4e99d (patch) | |
| tree | d23e453d06c29e889e6967d41e5c76fa123d1a16 /Makefile.in | |
| parent | Move keymap to window.c (diff) | |
| download | wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar.gz wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar.bz2 wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar.lz wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar.xz wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.tar.zst wayland-0de19eb6888ce3f7d87a8478216f05385be4e99d.zip | |
Add an image viewer client
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index a99533b..4e0ec57 100644 --- a/Makefile.in +++ b/Makefile.in @@ -5,10 +5,11 @@ exec_prefix = @exec_prefix@ udev_rules_dir = @sysconfdir@/udev/rules.d libs = libwayland-server.so libwayland.so -clients = flower gears screenshot terminal +egl_clients = gears +cairo_clients = flower screenshot terminal image compositors = wayland-system-compositor -all : $(libs) $(compositors) $(clients) +all : $(libs) $(compositors) $(egl_clients) $(cairo_clients) libwayland-server.so : \ wayland.o \ @@ -41,11 +42,16 @@ flower : flower.o wayland-glib.o gears : gears.o window.o wayland-glib.o cairo-util.o screenshot : screenshot.o wayland-glib.o terminal : terminal.o window.o wayland-glib.o cairo-util.o +image : image.o window.o wayland-glib.o cairo-util.o terminal : LDLIBS += -lutil +image : CFLAGS += @GDK_PIXBUF_CFLAGS@ +image : LDLIBS += @GDK_PIXBUF_LIBS@ -$(clients) : CFLAGS += @CLIENT_CFLAGS@ -$(clients) : LDLIBS += -L. -lwayland @CLIENT_LIBS@ -lrt +$(egl_clients) : CFLAGS += @EGL_CLIENT_CFLAGS@ +$(egl_clients) : LDLIBS += -L. -lwayland @EGL_CLIENT_LIBS@ -lrt +$(cairo_clients) : CFLAGS += @CAIRO_CLIENT_CFLAGS@ +$(cairo_clients) : LDLIBS += -L. -lwayland @CAIRO_CLIENT_LIBS@ -lrt install : $(libs) $(compositors) install -d @libdir@ @libdir@/pkgconfig ${udev_rules_dir} |
