본문 바로가기

Programming/General

makefile(.mk) flag and blank issue

If your flag has [blank] end of word, "ifeq" make miss understanding.


ex)

CONFIG_AAA := true [blank]

ifeq ($(CONFIG_AAA), true)

end



So we need to use "strip" sentence when we use "ifeq"


ifeq ($(strip $(CONFIG_AAA)),true)

'Programming > General' 카테고리의 다른 글

Git 유용한 명령어들  (0) 2019.01.30
balloon driver  (0) 2018.05.15
개발하기 좋은 Font  (0) 2017.02.15
filesystem 용어  (0) 2016.11.29
자바 코드 예제들을 모아놓은 사이트  (0) 2015.03.21