1
0
UAHCode/CPE455/gameproject/.svn/pristine/16/16762facfc9a4f3c92e18dab29656e94ced8e54b.svn-base
2022-08-28 16:12:16 -05:00

8 lines
149 B
Plaintext

CC = gcc
CFLAGS = -g -Wall --pedantic -ansi --coverage
game: game.c
$(CC) $(CFLAGS) game.c -o game -l ncurses
clean:
rm game *.gcda *.gcno *.gcov