mirror of
https://github.com/mfocko/blog.git
synced 2024-11-10 08:19:07 +01:00
12 lines
216 B
Makefile
12 lines
216 B
Makefile
|
check: check-unit check-functional
|
||
|
|
||
|
check-unit:
|
||
|
build/test_hangman
|
||
|
|
||
|
check-functional:
|
||
|
python3 test-bonus.py test hangman
|
||
|
python3 test-bonus.py test hangman --no-global-config
|
||
|
|
||
|
clean:
|
||
|
rm -rf test-*/*.out_produced
|