반응형
shell script에서 Makefile로 변수 전달하기.
환경변수를 이용하여 전달할 수 있다.
export test_path=/home/test/path
환경변수 전달이 싫다면, make 수행 시 전달도 가능하다.
make TestPath="${test_path}" ...
Makefile에서는 아래와 같이 간단하게 참조할 수 있다.
TestPath=${test_path}
반응형
'Linux > Command & Tool' 카테고리의 다른 글
Ubuntu 20.04에 python 3.10 설치하기 (4) | 2023.03.30 |
---|---|
간단하게 Endian 확인하기 (0) | 2019.07.26 |
[ps] ps로 thread 정보 확인하기 (0) | 2018.08.02 |
[cloc] 코드의 LOC 계산하기 (0) | 2018.07.25 |
[multitail] 여러 Log 동시 확인하기 (0) | 2018.07.24 |