diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -3,12 +3,14 @@ OBJ = $(SRC:.c=.o) BIN = comet.bin DEPS = cairo \ - xcb \ - xcb-icccm \ - xcb-xrm \ - xcb-randr \ - glib-2.0 -CFLAGS := $(shell pkg-config --cflags $(DEPS)) + xcb \ + xcb-icccm \ + xcb-xrm \ + "xcb-randr >= 1.5" \ + "glib-2.0 >= 2.44" \ + gio-2.0 + +CFLAGS := $(shell pkg-config --cflags $(DEPS)) -ggdb LDFLAGS := $(shell pkg-config --libs $(DEPS)) -lm all: $(BIN) |
