aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorhampus <hampusm@tuta.io>2021-01-07 15:39:27 +0100
committerHampusM <hampus@hampusmat.com>2021-12-11 19:50:08 +0100
commitc43bf48d3f429c9d93d2ac670b1c71c8401a6131 (patch)
tree710dae9a64590f45c87cd2330550f855d74384e6 /Makefile
parent1fbe763fbf2958c8eab87ce28a0dd0107f348ea4 (diff)
add mazerator
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
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)