From d19ca52b210fc41c013569762a2d7ae8167674aa Mon Sep 17 00:00:00 2001 From: nirav Date: Sun, 29 Nov 2020 21:26:59 +0000 Subject: Initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ef4e269 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-Wall -Wextra -std=c99 -pedantic +OBJ=test.o map.o + +all: test + +test: $(OBJ) + $(CC) -o $@ $(CFLAGS) $(OBJ) + +clean: + rm -f test *.o -- cgit v1.2.3