Reputation: 46143
For example: I want:
if file1 exists:
CLEAN_SRC = *.h file3
else
CLEAN_SRC =
Upvotes: 56
Views: 52197
Reputation: 362037
If file1
does not exist then $(wildcard file1)
will evaluate to an empty string.
ifeq ($(wildcard file1),)
CLEAN_SRC =
else
CLEAN_SRC = *.h file3
endif
Upvotes: 76