File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ ifeq ($(UNAME_S),Linux)
77endif
88
99CLANG_FLAGS := -xc -Wall -Wextra -Wpedantic -O3 -g -std=c99 $(EXTRA_CFLAGS )
10- SUPPLEMENTAL_TEST_FILES_DIR := out/supplemental_test_files
11- SUPPLEMENTAL_TEST_DATA_DIR := $(SUPPLEMENTAL_TEST_FILES_DIR ) /data
1210
1311ffc.h : src/ffc.h src/common.h src/parse.h src/digit_comparison.h src/api.h src/bigint.h amalgamate.py
1412 python3 amalgamate.py > ffc.h
@@ -26,7 +24,7 @@ out/test_runner: ffc.h test_src/test.c | out
2624 gcc -xc -Wall -Wextra -Wpedantic ffc.h -fsyntax-only
2725 clang $(CLANG_FLAGS ) -I. -Itest_src test_src/test.c -o out/test_runner -lm
2826
29- test : out/test_runner out/test_int_runner out/supplemental_tests
27+ test : out/test_runner out/test_int_runner
3028 ./out/test_runner
3129 ./out/test_int_runner
3230
@@ -35,6 +33,8 @@ out/test_int_runner: ffc.h test_src/test_int.c | out
3533
3634
3735# Supplemental test stuff
36+ SUPPLEMENTAL_TEST_FILES_DIR := out/supplemental_test_files
37+ SUPPLEMENTAL_TEST_DATA_DIR := $(SUPPLEMENTAL_TEST_FILES_DIR ) /data
3838
3939fetch-supplemental-data : | out
4040 git clone --depth 1 https://github.com/fastfloat/supplemental_test_files.git $(SUPPLEMENTAL_TEST_FILES_DIR )
You can’t perform that action at this time.
0 commit comments