대부분의 경우 잘 작동하는 코드를 얻기 위해 아래 코드를 사용했지만 makefile targets list
이와 같은 makefile을 사용하면 전체가 아닌 두 개의 대상만 얻게 됩니다.
다른 명령이 표시되지 않습니다
고양이Makefile
command: ## Command description
@echo "Execution log"
another-command: ## Command description
@echo "Execution log"
command2: ## Command description
@echo "Execution log"
출력은 다음과 같습니다
command
command2
왜 명령을 받지 못하는지 이해할 수 없습니다 another-command
. 코드는 다음과 같습니다.
`make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\\\/t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}' `;
무엇이 문제일까요?
나는 이것을 참고로 사용한다. make의 모든 대상을 나열하는 방법은 무엇입니까?
답변1
$ make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\\\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
command
Makefile
command2
another-command
내 문자 세트에서는 백슬래시와 탭이고, 귀하의 문자 세트에서는 백슬래시, 슬래시 및 "t"입니다.
그리고 "another"에는 "t"가 포함됩니다 ;-)
Steeldriver에 대한 크레딧