From 1233281541332398ad92e32c8eb1d29b5036e167 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 28 Aug 2017 23:54:17 -0400 Subject: initial commit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..492bf31 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CFLAGS += -std=gnu99 -Wall -Werror -Wextra -g + +CFLAGS += $(shell pkg-config --cflags x11) +LDFLAGS += $(shell pkg-config --libs x11) + +CFLAGS += $(shell pkg-config --cflags xrandr) +LDFLAGS += $(shell pkg-config --libs xrandr) + +CFLAGS += $(shell pkg-config --cflags gtk+-2.0) +LDFLAGS += $(shell pkg-config --libs gtk+-2.0) + +ggamma: ggamma.o -- cgit v1.2.3