From 68826be36df93533776c694a9adba8633270e61b Mon Sep 17 00:00:00 2001 From: cflip Date: Wed, 14 Sep 2022 21:12:59 -0600 Subject: Fix a few compiler-dependent errors --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cf63161..f9a6636 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -CC=clang++ CFLAGS=-pedantic -Wall --std=c++11 SRC=src/main.cpp \ @@ -10,4 +9,4 @@ SRC=src/main.cpp \ OUT=cfws $(OUT): $(SRC) - $(CC) $(CFLAGS) -o $(OUT) $(SRC) + $(CXX) $(CFLAGS) -o $(OUT) $(SRC) -- cgit v1.2.3