diff --git a/makefile b/makefile new file mode 100644 index 0000000..d8d2357 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +CC = gcc +CFLAGS = -Wall -Werror -pedantic -O2 + +macrod: macrod.o + +macrod.o: macrod.c + +clean: + rm macrod *.o