From 04a666e3b57cad661af14cc178e68a66dae27361 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 14 Jan 2024 19:29:41 +0000 Subject: [PATCH] Update build scripts --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index 3cacbdd..a61ba5b 100755 --- a/compile +++ b/compile @@ -1,7 +1,7 @@ #!/bin/bash CC=clang -CFLAGS="-g -Wall $(pkg-config --cflags sdl2)" +CFLAGS="-g -Wall -Iinclude -Iintern $(pkg-config --cflags sdl2)" LIBS="$(pkg-config --libs sdl2)" SRC=src/*.c OUT=main