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}