Update build scripts

This commit is contained in:
Abdelrahman Said 2024-01-14 19:29:41 +00:00
parent 82b8f88897
commit 04a666e3b5

View File

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