summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
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)