initial commit

This commit is contained in:
2024-09-21 16:39:10 +03:00
commit be39097f63
4 changed files with 216 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
CFLAGS = -I lib/ -O3 -Wall -Werror -Wextra -Wpedantic
build: src/main.c
mkdir -p bin/
gcc $(CFLAGS) -o bin/main \
src/terminal_colors.c \
src/main.c \
-lm