hp-minehunt/Makefile
2014-09-30 23:54:51 -07:00

9 lines
122 B
Makefile

CC=gcc
LIBS=-lncurses
CFLAGS=$(LIBS) -Wall -ansi #-g
all:
gcc $(CFLAGS) main.c -o minehunt
clean:
rm -rf *.o minehunt