summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-05-10 13:36:10 +0200
committerClaudius Holeksa <mail@keldu.de>2023-05-10 13:36:10 +0200
commitaa9954096ad14e95af7e772141e3bdb7a05e8607 (patch)
treeb54d5bb14c82cefc9e64e6139cd55572591218ec
parent482dc393d7c4a87edf669428f401f4f101c51e1e (diff)
downloadmini-test-master.tar.gz
Put std=c++17 back into its hard coded placeHEADmaster
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ed21d3c..c052f02 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
.PHONY: all clean
CXX ?= c++
-CXXFLAGS ?= -std=c++17
+CXXFLAGS ?=
PREFIX ?= /usr/local
all: build/libkeltest.a
build/libkeltest.a:
mkdir -p ./build
- ${CXX} ${CXXFLAGS} -DKELTEST_COMPILE_TEST_BINARY src/keltest/test.cpp -c -o build/test.o
+ ${CXX} -std=c++17 ${CXXFLAGS} -DKELTEST_COMPILE_TEST_BINARY src/keltest/test.cpp -c -o build/test.o
ar rcs build/libkeltest.a build/test.o
clean: