I was curious to see if I can compile this repo, with the Microsoft Program Maintenance Utility (NMAKE.EXE) (location) where I got the U1001 error:
makefile(4) : fatal error U1001: syntax error : illegal character '.' in macro Stop.
so I am wondering if nmake.exe
is by any means a substitute for GNU Make?
my questions are:
- Can we have cross-compatible
Makefile
s by using a subset of shared syntax between the two? - Can we use some sort of NMake or GNU Make macros to have compatible
MakeFile
s? - What are the major syntax differences between NMake and GNU Make?
P.S. It seems that this discussion is very relevant to my question, if not a duplicate.