반응형
1. makefile ifeq or 연산
- http://stackoverflow.com/questions/7656425/makefile-ifeq-logical-or
makefile은 or 연사자가 없음. filter를 이용해야 함
ifeq ($(GCC_MINOR), 4)
CFLAGS += -fno-strict-overflow
endif
ifeq ($(GCC_MINOR), 5)
CFLAGS += -fno-strict-overflow
endif
-> ifeq ($(GCC_MINOR),$(filter $(GCC_MINOR),4 5))
'language > makefile' 카테고리의 다른 글
Makefile 문법 (0) | 2018.02.23 |
---|