Makefile 에서 파일 존재 유무 확인
# 1.쉘명령 결과 ifneq (exist, $(shell [ -e FILENAME ] && echo exist)) COMMAND endif # 2.wildcard 사용 filename:=$(wildcard FILENAME) ifeq '$(filename)' '' endif