diff options
author | cflip <cflip@cflip.net> | 2022-09-14 21:12:59 -0600 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-09-14 21:12:59 -0600 |
commit | 68826be36df93533776c694a9adba8633270e61b (patch) | |
tree | ba261233080cbfb8e04eda268ba3bbf30c794cff /Makefile | |
parent | 280c39bc4d1aa948136e7c3631326e71b2dd1871 (diff) |
Fix a few compiler-dependent errors
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) |