From e7c48da3f553867072433b9451055f053a09c0a8 Mon Sep 17 00:00:00 2001 From: Tracker-Friendly Date: Wed, 14 Feb 2024 19:36:57 +0000 Subject: [PATCH] Fixed brackets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f405fad..b11b16e 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ CC = gcc 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.1 +WEBKIT_LIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.1) LIBS = $(GTK_LIBS) $(WEBKIT_LIBS) -INCLUDES = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 webkit2gtk-4.1 +INCLUDES = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 webkit2gtk-4.1) SRCS = pageburger.c OBJS = $(SRCS:.c=.o)