9 lines
247 B
Makefile
9 lines
247 B
Makefile
|
install:
|
||
|
test -d ~/.local/bin/ || mkdir -p ~/.local/bin/
|
||
|
cp generatetask ~/.local/bin/generatetask
|
||
|
chmod +x ~/.local/bin/generatetask
|
||
|
test:
|
||
|
bash_unit tests/test*.sh
|
||
|
testrunner:
|
||
|
find generatetask tests/test*.sh | entr -c bash_unit tests/test*
|