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