I have a makefile which I am running through nmake, as opposed to gnumake.
I have some code taken from a makefile intended to gnumake...
# out_repo =
ifndef out_repo
$(error out_repo is not set)
endif
This does not work with nmake. Is there a way in nmake where I can have the same behaviour, where the make process will error out if a variable is not defined?