task-keeper 0.30.5

Task keeper to manage tasks from different task runners
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: hello second clean.h

# say hello
hello:
	echo "hello"

# second task
second:
	echo "second"

# clean up
clean.h:
	echo "clean"