aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-26 11:29:22 +1300
committerArslaan Pathan <[email protected]>2026-03-26 11:29:22 +1300
commit98220f6c7633bf2d58bca816f0fa7b3827017261 (patch)
tree7f0f9937b29707fa0288014a5058c4537fc0388c /Makefile
parent17bf3fc9125dfb003db3c057d171fa277cfab027 (diff)
downloadcinnamon-browser-98220f6c7633bf2d58bca816f0fa7b3827017261.tar.xz
cinnamon-browser-98220f6c7633bf2d58bca816f0fa7b3827017261.zip
Licensing stuff
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: