본문 바로가기

Linux

Makefile에서 대소문자 변환하기

[출처] : https://kldp.org/node/86111


Makefile에서 대소문자 변환하기

ORG := 'This is Test'
LOWER := $(shell echo $(ORG) | tr [A-Z] [a-z])
UPPER := $(shell echo $(ORG) | tr [a-z] [A-Z])



'Linux' 카테고리의 다른 글

boost : cross compile  (0) 2015.06.29
ssh 자동 로그인하기.  (0) 2015.06.13
DirectFB API 설명  (0) 2014.12.22
최근 변경 파일 찾기  (0) 2014.12.12
GCC 컴파일 옵션  (0) 2014.09.22