Reorganise files

This commit is contained in:
Abdelrahman Said 2024-01-14 02:17:11 +00:00
parent 12cad4c711
commit e4d3024364
4 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
#!/bin/bash
CC=clang
CFLAGS="-g -Wall -Iintern $(pkg-config --cflags sdl2)"
CFLAGS="-g -Wall -Iinclude -Iintern $(pkg-config --cflags sdl2)"
LIBS="$(pkg-config --libs sdl2) -lm"
SRC=*.c
SRC=src/*.c
OUT=main
(set -x ; $CC $CFLAGS $LIBS $SRC -o $OUT)

View File