From c43bf48d3f429c9d93d2ac670b1c71c8401a6131 Mon Sep 17 00:00:00 2001 From: hampus Date: Thu, 7 Jan 2021 15:39:27 +0100 Subject: add mazerator --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4b9bb98 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +TARGET=mazerator +CC=gcc +CFLAGS=-Wall + +all: $(TARGET) + +$(TARGET): $(TARGET).c + $(CC) $(CFLAGS) $(TARGET).c -o $(TARGET) + +clean: + $(RM) $(TARGET) -- cgit v1.2.3-18-g5258