From b4d3b27fafe47df4f2c6c62e07dddb60965dc4ab Mon Sep 17 00:00:00 2001 From: Tracker-Friendly Date: Thu, 15 Feb 2024 19:26:38 +0000 Subject: [PATCH] Fixed silly --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3abbbc5..eff0cb9 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ SHAREDIR = /usr/share CFLAGS = -Wall -Wextra -g PKG_CONFIG = pkg-config GTK_LIBS = $(shell $(PKG_CONFIG) --libs gtk+-3.0) -WEBKIT_LIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.0) +WEBKIT_LIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.1) LIBS = $(GTK_LIBS) $(WEBKIT_LIBS) -INCLUDES = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 webkit2gtk-4.0) +INCLUDES = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 webkit2gtk-4.1) SRCS = pageburger.c OBJS = $(SRCS:.c=.o)