This commit is contained in:
Roman Khaliavka 2025-05-01 16:01:29 +00:00
parent 36ee603067
commit ec34196477

13
a4/Makefile Normal file
View File

@ -0,0 +1,13 @@
CC=gcc
CFLAGS=-Wall -Wextra -g
LDFLAGS=-lncurses
OBJS=main.o world.o game.o
all: game
game: $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o game