I'm trying to do something like the following:
.c.o:
ifneq (, $(findstring FOO, $@))
@echo "FOO"
endif
The only problem is this does not work if $@ (current file) contains the string "FOO" when it should be. How would I do this?
|
I'm trying to do something like the following:
The only problem is this does not work if $@ (current file) contains the string "FOO" when it should be. How would I do this? |
||||
|
|
|
Try this one, using conditional function:
|
|||
|
|