Conversation
Added export PATH := $(DEVKITARM)/bin:$(PATH) from the CakesROPSpider Makefile. This solves some compilation issues I was having on OS X 10.11 El Capitan.
…RM/bin The .DEFAULT_GOAL line allows one to simply run "make" and end up with rxTools
|
The path issues I was having are probably user error on my part, but CakesROPSpider's Makefile still prevents such user errors as long as $DEVKITARM is defined properly. By adding this line to the main rxTools Makefile we're actually ensuring that $DEVKITARM/bin is the first folder in the command search path, which means that anybody with a properly installed copy of devkitARM needn't add it to their path variable for compilation. Also, the fact that compiling requires |
Added
export PATH := $(DEVKITARM)/bin:$(PATH)from the CakesROPSpider Makefile. This solves some compilation issues I was having on OS X 10.11 El Capitan.Also added
.DEFAULT_GOAL := releasewhich will allow runningmakewithout arguments to build rxTools