diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
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) |