Added makefile.

This commit is contained in:
Murilo Soares Pereira 2010-03-28 20:41:36 -03:00
parent a0e5fac82d
commit bb48c52a76

10
src/makefile Normal file
View File

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