Skip to content

Commit a07aade

Browse files
committed
Move supplemental stuff down; remove dep clause
1 parent e8bed2e commit a07aade

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ ifeq ($(UNAME_S),Linux)
77
endif
88

99
CLANG_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

1311
ffc.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

3939
fetch-supplemental-data: | out
4040
git clone --depth 1 https://github.com/fastfloat/supplemental_test_files.git $(SUPPLEMENTAL_TEST_FILES_DIR)

0 commit comments

Comments
 (0)