最後活躍 1773239724

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

修訂 029cbab1d2ed94925ed301104f09c3e8116ece0c

.editorconfig 原始檔案
1[*]
2charset = utf-8
3end_of_line = lf
4insert_final_newline = true
5indent_style = space
6indent_size = 4
7trim_trailing_whitespace = true
8
9[Makefile]
10indent_style = tab
11
Makefile 原始檔案
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