From 517b0b953209fcdd6be3d8eac5f18e5582cd2cb7 Mon Sep 17 00:00:00 2001 From: CPunch Date: Fri, 11 Jun 2021 15:01:53 -0500 Subject: [PATCH] Removed '-Werror' to the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6619cfa..b991ab7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # make clean && make && ./bin/cosmo CC=clang -CFLAGS=-fPIE -Wall -O3 -Isrc -std=c99 -Werror +CFLAGS=-fPIE -Wall -O3 -Isrc -std=c99 LDFLAGS=-lm #-fsanitize=address OUT=bin/cosmo @@ -45,4 +45,4 @@ $(OUT): $(COBJ) $(CHDR) $(CC) $(COBJ) $(LDFLAGS) -o $(OUT) clean: - rm -rf $(COBJ) $(OUT) \ No newline at end of file + rm -rf $(COBJ) $(OUT)