aboutsummaryrefslogtreecommitdiffstats
path: root/clients/Makefile
blob: 1ff8f1444d0ddbc00f502418ee3964008233a595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
include ../config.mk

CFLAGS += -I.. $(CLIENT_CFLAGS)
LDLIBS += -L.. -lwayland-client $(CLIENT_LIBS) -lrt -lm

egl_clients = gears
cairo_clients = flower screenshot terminal image view

all : $(egl_clients) $(cairo_clients)

clean :
	rm -f $(egl_clients) $(cairo_clients) *.o

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 wayland-glib.o cairo-util.o
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

terminal : LDLIBS += -lutil
view : CFLAGS += $(POPPLER_CFLAGS)
view : LDLIBS += $(POPPLER_LIBS)

install :