g***y 发帖数: 11 | 1 I want to test if a directory exists. If no, will create it.
How can I do it in Makefile?
Thanks. | D**e 发帖数: 10169 | 2 it cant be done by makefile, you have to write scripts
and call the scripts from your makefile.
【在 g***y 的大作中提到】 : I want to test if a directory exists. If no, will create it. : How can I do it in Makefile? : Thanks.
| p**********g 发帖数: 187 | 3 I think at least GNU make supports [ -d dir ] || mkdir dir
as command
【在 D**e 的大作中提到】 : it cant be done by makefile, you have to write scripts : and call the scripts from your makefile.
|
|