We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b364cc0 commit 71bd407Copy full SHA for 71bd407
Makefile
@@ -13,6 +13,8 @@ all: cppfront.exe source/reflect.h include/cpp2regex.h
13
CXX ?= g++
14
CPPFRONT ?= ./cppfront.exe
15
CFLAGS ?=
16
+REGRESS_LABEL ?= regress
17
+REGRESS_STD ?= c++2b
18
19
CFLAGS += -Wall -Werror -Wextra -Wpedantic
20
@@ -41,5 +43,9 @@ include/cpp2regex.h: include/cpp2regex.h2
41
43
source/reflect.h: source/reflect.h2
42
44
${CPPFRONT} source/reflect.h2 -o source/reflect.h
45
46
+regress: cppfront.exe
47
+ cd regression-tests && \
48
+ bash ./run-tests.sh -e ../cppfront.exe -c ${CXX} -l ${REGRESS_LABEL} -s ${REGRESS_STD}
49
+
50
clean:
51
rm -f cppfront.exe
0 commit comments