From 48c90cdee40a4def767642d5da4166e5450d298a Mon Sep 17 00:00:00 2001 From: fenze Date: Mon, 16 May 2022 09:55:12 +0200 Subject: [PATCH] makefile: remove options to enable gtkdebug variable --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 33e5f0b..34aabd1 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ # -*- indent-tabs-mode: t -*- -CC ?= cc +CC ?= clang CFLAGS = `pkg-config --cflags gtk4 webkit2gtk-5.0 x11` LIBS = `pkg-config --libs gtk4 webkit2gtk-5.0 x11` OPTIONS = -Dgtk_doc=false -Dintrospection=false \ @@ -26,7 +26,7 @@ rose: strip ./rose debug: - $(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) $(OPTIONS) -Wall -Wextra + $(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) -Wall -Wextra config.h: [ -f "$@" ] || cp config.def.h $@