14 lines
126 B
Makefile
14 lines
126 B
Makefile
|
.PHONY: run debug test help
|
||
|
|
||
|
run:
|
||
|
# run the thing
|
||
|
|
||
|
debug:
|
||
|
# run the thing in debug mode
|
||
|
|
||
|
test:
|
||
|
pytest
|
||
|
|
||
|
help:
|
||
|
echo "help!"
|