Fixed silly

This commit is contained in:
Tracker-Friendly 2024-02-15 19:26:38 +00:00
parent 3d3862a085
commit b4d3b27faf
1 changed files with 2 additions and 2 deletions

View File

@ -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)