summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2010-01-24 18:10:15 -0500
committerKristian Høgsberg <krh@bitplanet.net>2010-01-24 18:10:15 -0500
commita341fa016c54948af4fc76cde864f460f962f9db (patch)
treee03749a18af66b568b5872298cdc29eded71b877 /Makefile.in
parent450cc8136d5c3c84407b3c621006a1fa6b092085 (diff)
downloadwayland-a341fa016c54948af4fc76cde864f460f962f9db.tar.gz
wayland-a341fa016c54948af4fc76cde864f460f962f9db.tar.xz
wayland-a341fa016c54948af4fc76cde864f460f962f9db.zip
Use FBOs instead of eagle-specific API
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index cc66c61..3f666e2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -8,8 +8,9 @@ libs = libwayland-server.so libwayland.so
egl_clients = gears
cairo_clients = flower screenshot terminal image view
compositors = wayland-system-compositor
+clients = $(egl_clients) $(cairo_clients)
-all : $(libs) $(compositors) $(egl_clients) $(cairo_clients)
+all : $(libs) $(compositors) $(clients)
libwayland-server.so : \
wayland.o \
@@ -36,7 +37,7 @@ wayland-system-compositor : \
wayland-util.o
wayland-system-compositor : CFLAGS += @EGL_COMPOSITOR_CFLAGS@
-wayland-system-compositor : LDLIBS += -L. -lwayland-server @EGL_COMPOSITOR_LIBS@ -rdynamic -lrt
+wayland-system-compositor : LDLIBS += ./libwayland-server.so @EGL_COMPOSITOR_LIBS@ -rdynamic -lrt
flower : flower.o wayland-glib.o
gears : gears.o window.o wayland-glib.o cairo-util.o
@@ -54,7 +55,7 @@ view : LDLIBS += @POPPLER_LIBS@
$(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
+$(cairo_clients) : LDLIBS += ./libwayland.so @CAIRO_CLIENT_LIBS@ -lrt
install : $(libs) $(compositors)
install -d @libdir@ @libdir@/pkgconfig ${udev_rules_dir}