Ultima attività 1773239724

Пример для использования в проектах

Revisione c5a651d145dfd26934ecc84a08875839f0923fad

Makefile Raw
1.DEFAULT_GOAL := help
2.PHONY: goal1 goal2
3
4######################
5
6goal1:
7 @echo "This is goal1"
8
9goal2:
10 @echo "This is goal2"
11
12######################
13
14## help: This help message
15help: Makefile
16 @echo "Available goals:"
17 @sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
18