diff options
author | hampus <hampusm@tuta.io> | 2021-01-07 15:39:27 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-12-11 19:50:08 +0100 |
commit | c43bf48d3f429c9d93d2ac670b1c71c8401a6131 (patch) | |
tree | 710dae9a64590f45c87cd2330550f855d74384e6 /Makefile | |
parent | 1fbe763fbf2958c8eab87ce28a0dd0107f348ea4 (diff) |
add mazerator
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
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) |