Skip to content

Commit 667b672

Browse files
committed
Use shorter variable name for $(RESULTS)
1 parent 7f7a956 commit 667b672

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CI/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ export EXPECT_PASSED_TESTS=30
66

77

88
export LIBPQ=$(abspath ../)
9-
TEST_RESULTS=results.json
9+
RESULTS=results.json
1010

1111

1212
.PHONY: test
13-
test: $(TEST_RESULTS)
14-
$(TEST_RESULTS): LibPQ.pq LibPQPath.pq credentials.xml test.pq
15-
$(TEST_RESULTS): $(wildcard ../Modules/*) $(wildcard ../Tests/*)
16-
$(PQ) . test -c credentials.xml -o json -f $(TEST_RESULTS)
13+
test: $(RESULTS)
14+
$(RESULTS): LibPQ.pq LibPQPath.pq credentials.xml test.pq
15+
$(RESULTS): $(wildcard ../Modules/*) $(wildcard ../Tests/*)
16+
$(PQ) . test -c credentials.xml -o json -f $(RESULTS)
1717

1818

1919
.PHONY: verify
20-
verify: $(TEST_RESULTS)
21-
$(PY) verify.py $(TEST_RESULTS)
20+
verify: $(RESULTS)
21+
$(PY) verify.py $(RESULTS)
2222

2323

2424
.PHONY: clean

0 commit comments

Comments
 (0)