take the selecton for the screens that we will be managing, and skip the ones where...
[dana/dcompmgr.git] / Makefile
1 sources = $(wildcard *.c)
2 objs = $(sources:.c=.o)
3
4 CFLAGS=$(shell pkg-config --cflags xcb-composite glib-2.0) -ggdb
5 LIBS=$(shell pkg-config --libs xcb-composite glib-2.0)
6
7 dcompmgr: $(objs)
8         $(CC) -o $@ $^ $(LIBS) $(LDFLAGS)
9
10 .c.o:
11         $(CC) -c -o $@ $^ $(CFLAGS)