wayland/clients/Makefile

24 lines
614 B
Makefile
Raw Normal View History

2010-06-04 21:46:50 -04:00
include ../config.mk
2010-06-08 20:34:11 -04:00
CFLAGS += -I.. $(CLIENT_CFLAGS)
LDLIBS += -L.. -lwayland $(CLIENT_LIBS) -lrt -lm
2010-06-04 21:46:50 -04:00
egl_clients = gears
cairo_clients = flower screenshot terminal image view
all : $(egl_clients) $(cairo_clients)
clean :
rm -f $(egl_clients) $(cairo_clients) *.o
2010-06-08 14:08:30 -04:00
flower : flower.o window.o wayland-glib.o
2010-06-05 10:17:55 -04:00
gears : gears.o window.o wayland-glib.o
2010-06-04 21:46:50 -04:00
screenshot : screenshot.o wayland-glib.o
2010-06-05 10:17:55 -04:00
terminal : terminal.o window.o wayland-glib.o
image : image.o window.o wayland-glib.o
view : view.o window.o wayland-glib.o
2010-06-04 21:46:50 -04:00
terminal : LDLIBS += -lutil
view : CFLAGS += $(POPPLER_CFLAGS)
view : LDLIBS += $(POPPLER_LIBS)