lkundrak / dev86

C compiler, assembler and linker environment for the production of 8086 executables
http://v3.sk/~lkundrak/dev86/
GNU General Public License v2.0
153 stars 44 forks source link

build: Always use $(MAKE) to spawn sub-make #17

Open mgorny opened 6 years ago

mgorny commented 6 years ago

Always use $(MAKE) instead of literal 'make' to spawn the correct make variant. Otherwise, e.g. when using 'gmake' on FreeBSD the Makefiles spawn BSD make and things fail because of incompatible MAKEFLAGS set by GNU make.

mgorny commented 6 years ago

Original bug report: https://bugs.gentoo.org/649940

mfld-fr commented 6 years ago

As you may notice, this mainstream has been inactive for a while... a PR on the currently maintained fork would have more chance to be worked : https://github.com/jbruchon/dev86.

mfld-fr commented 6 years ago

Merged in https://github.com/jbruchon/dev86/pull/12.