• Ben Avison's avatar
    Tweak definition of `${MAKE}` when cross-compiling · 64010501
    Ben Avison authored
    When executing the makefile from within the `objs` directory, this now
    includes an implicit `-C..` option. This makes it simpler to write agnostic
    makefiles. For example,
    
    	${MAKE} -f other${EXT}mk other_target
    
    rather than
    
    ifeq (,${MAKE_VERSION})
    	${MAKE} -f other/mk other_target
    else
    	${MAKE} -f ../other.mk other_target
    endif
    64010501
StdTools 6.16 KB