Using conventions of Makefile and seperate header / code files

This commit is contained in:
2025-06-06 09:34:45 -05:00
parent 6c08c28ae5
commit 8fb4ca0749
4 changed files with 209 additions and 161 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
CC = clang
CFLAGS = -O2 -Wall -Wextra -Wno-c2x-extensions
test_array:
$(CC) $(CFLAGS) -o test_array test_array.c libkeke_array.c
./test_array