From f5ce5e28f94a8be99145b38834947e00ed9a5889 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Fri, 19 May 2017 20:50:55 +0200 Subject: [PATCH] Fix Makefile: always evaluate the targets --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 7bb861b..6d034d7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ +.PHONY: all all: boot9strap +.PHONY: boot9strap boot9strap: mkdir -p out mkdir -p build @@ -7,6 +9,7 @@ boot9strap: armips boot9strap.s python build_boot9strap_firm.py +.PHONY: clean clean: cd arm9_stage2 && $(MAKE) clean rm -rf out