aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHampus <hampus@hampusmat.com>2021-12-14 00:03:15 +0100
committerHampus <hampus@hampusmat.com>2021-12-14 00:03:15 +0100
commit828c6563124baeff4d80aeefd15b6bbfd7ff86a2 (patch)
tree7f31639810ee2c667f6864a724d76323c75ed933 /Makefile
parent88d8be06f3e5411db6faa59db12210b6079f7d21 (diff)
build: use cmake
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index f4b0180..0000000
--- a/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-TARGET=mazerator
-SRCS=$(TARGET).c maze.c position_stack.c utils.c
-CC=gcc
-CFLAGS=-Wall
-CFLAGS_DEBUG=-fdiagnostics-color=always -g
-
-all: $(TARGET)
-
-$(TARGET): $(TARGET).c
- $(CC) $(CFLAGS) -O2 $(SRCS) -o $(TARGET)
-
-.PHONY: debug clean
-
-debug: $(TARGET).c
- $(CC) $(CFLAGS) $(CFLAGS_DEBUG) $(SRCS) -o $(TARGET)
-
-clean:
- $(RM) $(TARGET)