aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-01-07 18:07:35 +0100
committerHampusM <hampus@hampusmat.com>2022-01-07 18:07:35 +0100
commit097aa95c1f0cb159e7d9d0a3edf9284c421ee298 (patch)
tree417d423ef1420634612f1db9f6f97d812f56ec01 /Makefile
parent02dee3370f1420b208c546194ac67322fe563a24 (diff)
Revert "build: use Makefile instead of Cmake"
This reverts commit 813c98b028c9ba484fb5b21a60067ae35cc925ff.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 82c2f43..0000000
--- a/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-CC=gcc
-CSTD=c17
-CFLAGS=-Wall -O2 --std=$(CSTD)
-CDEBUGFLAGS=-Wall -g -O0 --std=$(CSTD) # -fno-stack-protector
-
-SRCDIR=src
-SRCS=$(wildcard $(SRCDIR)/*.c)
-
-TARGET=mazerator
-
-.PHONY: debug clean
-
-all: $(TARGET)
-
-$(TARGET): $(SRCS)
- $(CC) $(CFLAGS) $(SRCS) -o $(TARGET)
-
-debug:
- $(CC) $(CDEBUGFLAGS) $(SRCS) -o $(TARGET)
-
-clean:
- $(RM) $(TARGET)