Added makefile.
This commit is contained in:
parent
a0e5fac82d
commit
bb48c52a76
10
src/makefile
Normal file
10
src/makefile
Normal 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}
|
Loading…
Reference in New Issue
Block a user