This commit is contained in:
Denis Landa 2025-06-08 21:33:06 +02:00
parent e89f476905
commit 36f21816e3

View File

@ -1,5 +1,6 @@
CC=gcc
CFLAGS=-Wall -std=c99 -g -I/usr/include/ncursesw
CFLAGS=-Wall -std=c99 -g
LDFLAGS=-lncurses
OBJS = main.o game.o world.o
@ -20,3 +21,4 @@ world.o: world.c world.h
clean:
rm -f *.o game