Makefile ファイル存在確認
Makefile
で特定のファイルが存在する/しないときにのみ処理を行う
code:Makefile
FILEPATH=./hoge.txt
.PHONY: validate_file_exists
validate_file_exists:
ifeq ("$(wildcard $(FILE_PATH))", "")
$(error $(FILEPATH) not found)
endif