aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-12-02 15:16:11 -0500
committerKristian Høgsberg <krh@redhat.com>2008-12-02 15:16:11 -0500
commit3620295d17f43b61070916e1e44a67f4df855dac (patch)
tree84984e4a50991ae71126bcb68cb17432b120396e /Makefile
parentPut Wayland under the MIT license. (diff)
downloadwayland-3620295d17f43b61070916e1e44a67f4df855dac.tar
wayland-3620295d17f43b61070916e1e44a67f4df855dac.tar.gz
wayland-3620295d17f43b61070916e1e44a67f4df855dac.tar.bz2
wayland-3620295d17f43b61070916e1e44a67f4df855dac.tar.lz
wayland-3620295d17f43b61070916e1e44a67f4df855dac.tar.xz
wayland-3620295d17f43b61070916e1e44a67f4df855dac.tar.zst
wayland-3620295d17f43b61070916e1e44a67f4df855dac.zip
Drop unused clients, pointer and window.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 8905dbe..c0ad067 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ PKG_CONFIG_PATH ?= $(HOME)/install/lib/pkgconfig
EAGLE_CFLAGS = $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config --cflags eagle)
EAGLE_LDLIBS = $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config --libs eagle)
-clients = flower pointer background window screenshot
+clients = flower window screenshot
compositors = egl-compositor.so glx-compositor.so
all : wayland libwayland.so $(compositors) $(clients)
@@ -44,17 +44,12 @@ libwayland.so $(compositors) :
gcc -o $@ $^ $(LDLIBS) -shared
flower_objs = flower.o wayland-glib.o cairo-util.o
-pointer_objs = pointer.o wayland-glib.o cairo-util.o
-background_objs = background.o wayland-glib.o
window_objs = window.o gears.o wayland-glib.o cairo-util.o
screenshot_objs = screenshot.o wayland-glib.o
$(clients) : CFLAGS += $(shell pkg-config --cflags cairo glib-2.0)
$(clients) : LDLIBS += $(shell pkg-config --libs cairo glib-2.0) -lrt
-background : CFLAGS += $(shell pkg-config --cflags gdk-pixbuf-2.0)
-background : LDLIBS += $(shell pkg-config --libs gdk-pixbuf-2.0)
-
window : CFLAGS += $(EAGLE_CFLAGS)
window : LDLIBS += $(EAGLE_LDLIBS)