Fixed brackets
This commit is contained in:
parent
3f8d838e16
commit
e7c48da3f5
4
Makefile
4
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)
|
||||
|
|
Reference in New Issue