In the clean section of my Makefile I am trying to check if the file exists before deleting permanently. I use this code but I receive errors.
Makefile
What\'s w
It may need a backslash on the end of the line for continuation (although perhaps that depends on the version of make):
if [ -a myApp ] ; \ then \ rm myApp ; \ fi;