]> andersk Git - libyaml.git/blob - tests/run-test-suite/Makefile
Replace Mercurial with Git in README
[libyaml.git] / tests / run-test-suite / Makefile
1 .PHONY: test
2 GITHUB_ORG_URI := https://github.com/yaml
3 TEST_SUITE_URL := $(GITHUB_ORG_URI)/yaml-test-suite
4
5 default: help
6
7 help:
8         @echo 'test  - Run the tests'
9         @echo 'clean - Remove generated files'
10         @echo 'help  - Show help'
11
12 test: data
13         prove -lv test
14
15 clean:
16         rm -fr data
17
18 data:
19         git clone $(TEST_SUITE_URL) $@ --branch=$@
20
This page took 0.031193 seconds and 5 git commands to generate.