↧
Answer by Omer Dagan for If conditions in a Makefile, inside a target
You can simply use shell commands. If you want to suppres echoing the output, use the "@" sign. For example: clean: @if [ "test" = "test" ]; then\ echo "Hello world";\ fi Note that the closing ";" and...
View ArticleAnswer by Beta for If conditions in a Makefile, inside a target
There are several problems here, so I'll start with my usual high-level advice: Start small and simple, add complexity a little at a time, test at every step, and never add to code that doesn't work....
View ArticleIf conditions in a Makefile, inside a target
I'm trying to setup a Makefile that will search and copy some files (if-else condition) and I can't figure out what exactly is wrong with it? (thou I'm pretty sure it's because a combination of...
View Article