From bb48c52a766729427cf6c381eb06c95dff113c7a Mon Sep 17 00:00:00 2001 From: Murilo Soares Pereira Date: Sun, 28 Mar 2010 20:41:36 -0300 Subject: [PATCH] Added makefile. --- src/makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/makefile diff --git a/src/makefile b/src/makefile new file mode 100644 index 0000000..02a2b4e --- /dev/null +++ b/src/makefile @@ -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}