diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) |