From 4fea7ff94d797673f85717617871fae9d7029d04 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Tue, 21 Jun 2016 20:00:47 -0400 Subject: [PATCH] Reorder makefile - all is the default target, not rel --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 01d4bae..f57e947 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,9 @@ objects_cfw = $(patsubst $(dir_source)/%.s, $(dir_build)/%.o, \ $(patsubst $(dir_source)/%.c, $(dir_build)/%.o, \ $(call rwildcard, $(dir_source), *.s *.c))) +.PHONY: all +all: hosttools font a9lh patch external + .PHONY: release release: rm -rf rel @@ -50,9 +53,6 @@ release: make CHAINLOADER=1 REL=$(REL) full mv out/release.zip out/release.zip.sha512 rel/ -.PHONY: all -all: hosttools font a9lh patch external - .PHONY: hosttools hosttools: make -C host/bdfe dir_out=$(dir_out) fw_folder=$(fw_folder) -- 2.39.5