Refactoring, license, Box UI framework

This commit is contained in:
2025-10-17 13:41:37 +02:00
parent 0222bc1f90
commit eeee5aba7d
10 changed files with 322 additions and 319 deletions

View File

@@ -1,2 +1,14 @@
CFLAGS = -lcurses -std=c23 -Wextra -pedantic -Wall
main: main.c
CFLAGS = -std=c23 -Wextra -pedantic -Wall -pedantic
LDFLAGS = -lncurses
main: box.o main.o ui.o util.o
.PHONY: clean
box.o: box.c
main.o: main.c
ui.o: ui.c
util.o: util.c
clean:
rm *.o main