From 9df5f5f8dec0fc08326a286ee8c4a2613bb9e48f Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Sat, 18 Apr 2020 14:01:53 +0200 Subject: [PATCH] created makefile --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 makefile 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