Fixed makefile and put it on the root dir.

This commit is contained in:
Murilo Soares Pereira
2010-03-28 21:11:29 -03:00
parent 9610d35611
commit e83ea125a9
2 changed files with 12 additions and 11 deletions

View File

@@ -1,11 +0,0 @@
CC = gcc
CFLAGS = -W -Wall -pedantic -ansi -std=c99
OUTPUT = ../bin/hatneck
OBJECTS =
LDFLAGS = -lncurses
hatneck: ${OBJECTS}
${CC} ${CFLAGS} ${LDFLAGS} hatneck.c -o ${OUTPUT} ${OBJECTS}
clean:
rm -rf *.o ${OUTPUT}