SlickEdit autogenerated Makefile generate the following by default.
# SlickEdit generated file. Do not edit this file except in designated areas. # Make command to use for dependencies MAKE=make RM=rm MKDIR=mkdir # -----Begin user-editable area----- # -----End user-editable area----- # If no configuration is specified, "Debug" will be used ifndef CFG CFG=Debug endif .....
But what if you want to use another make application?
you need to do it in the Makefile itself:
... # -----Begin user-editable area----- MAKE=my-make # -----End user-editable area----- ...
Advertisement