wayland/clients/Makefile

34 lines
1 KiB
Makefile
Raw Normal View History

2010-06-04 21:46:50 -04:00
include ../config.mk
CFLAGS += -I../wayland $(CLIENT_CFLAGS)
LDLIBS += -L../wayland -lwayland-client $(CLIENT_LIBS) -lrt -lm
2010-06-08 20:34:11 -04:00
2010-06-04 21:46:50 -04:00
egl_clients = gears
2010-08-18 15:28:04 -04:00
cairo_clients = flower screenshot terminal image view dnd
2010-06-04 21:46:50 -04:00
all : $(egl_clients) $(cairo_clients)
clean :
2010-08-25 13:38:40 -04:00
rm -f $(egl_clients) $(cairo_clients) *.o .*.deps
2010-06-04 21:46:50 -04:00
2010-08-16 16:17:42 -04:00
flower : flower.o window.o wayland-glib.o cairo-util.o
gears : gears.o window.o wayland-glib.o cairo-util.o
screenshot : screenshot.o screenshooter-protocol.o wayland-glib.o cairo-util.o
2010-08-16 16:17:42 -04:00
terminal : terminal.o window.o wayland-glib.o cairo-util.o
image : image.o window.o wayland-glib.o cairo-util.o
view : view.o window.o wayland-glib.o cairo-util.o
2010-08-18 15:28:04 -04:00
dnd : dnd.o window.o wayland-glib.o cairo-util.o
2010-06-04 21:46:50 -04:00
2010-09-17 09:04:46 -04:00
screenshot.c : screenshooter-client-protocol.h
screenshooter-protocol.c : ../compositor/screenshooter.xml
../wayland/scanner code < $< > $@
screenshooter-client-protocol.h : ../compositor/screenshooter.xml
../wayland/scanner client-header < $< > $@
2010-06-04 21:46:50 -04:00
terminal : LDLIBS += -lutil
view : CFLAGS += $(POPPLER_CFLAGS)
view : LDLIBS += $(POPPLER_LIBS)
install :