aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 08599a1..ab50dfc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+# Copyright (c) 2026 Arslaan Pathan
+# This software is licensed under the ARPL. See LICENSE for details.
CC = clang
CFLAGS = -std=gnu17 `pkg-config --cflags webkit2gtk-4.1 gtk+-3.0`
LIBS = `pkg-config --libs webkit2gtk-4.1 gtk+-3.0`
@@ -6,7 +8,7 @@ SRC = main.c
all: $(TARGET)
-$(TARGET): $(SRC)
+$(TARGET): $(SRC) config.h
$(CC) -o $(TARGET) $(SRC) $(CFLAGS) $(LIBS)
clean: