aboutsummaryrefslogtreecommitdiff
path: root/experimental/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/Makefile')
-rw-r--r--experimental/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/experimental/Makefile b/experimental/Makefile
index 27d84c4..2bb7fca 100644
--- a/experimental/Makefile
+++ b/experimental/Makefile
@@ -18,11 +18,15 @@ CC = gcc
# to get full debug symbols, add to both FLAGS: -g
# to make all warnings act as errors: -Wall -Weffc++ -Wextra -Wsign-conversion -Werror
CXXFLAGS = -g -std=c++17 -Wall -Weffc++ -Wextra -Wsign-conversion -Werror
-CCFLAGS = -g -Wall -Wextra -Wsign-conversion -Werror `pkg-config x11 --cflags`
+CCFLAGS = -g -Wno-deprecated-declarations \
+ `pkg-config --cflags x11` \
+ `pkg-config --cflags gtk+-3.0`
# to remove all debug symbols: -s
# to add full debug symbols: -g
-LDFLAGS = -g `pkg-config x11 --libs`
+LDFLAGS = -g \
+ `pkg-config --libs x11` \
+ `pkg-config --libs gtk+-3.0`
src = $(wildcard *.c)
obj = $(src:.c=.o)
bgstack15