From 3f043dc0cae45f0f28ecaab07055a3a8587f3aad Mon Sep 17 00:00:00 2001 From: Brian Recchia Date: Fri, 26 Feb 2016 16:03:55 -0500 Subject: [PATCH 1/2] Update Makefile 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79ccabd1..d826c47e 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - +export PATH := $(DEVKITARM)/bin:$(PATH) CODE_FILE := code.bin SYS_PATH := rxTools/sys SET_SYS_PATH := SYS_PATH=$(SYS_PATH) From c4f1e903023942e9010d71924cb39fd508a7a188 Mon Sep 17 00:00:00 2001 From: Brian Recchia Date: Fri, 26 Feb 2016 16:21:42 -0500 Subject: [PATCH 2/2] Update Makefile: add default goal and update path to include $DEVKITARM/bin The .DEFAULT_GOAL line allows one to simply run "make" and end up with rxTools --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d826c47e..d936462a 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. export PATH := $(DEVKITARM)/bin:$(PATH) +.DEFAULT_GOAL := release CODE_FILE := code.bin SYS_PATH := rxTools/sys SET_SYS_PATH := SYS_PATH=$(SYS_PATH)