Skip to content

Commit

Permalink
Fix Makefile: always evaluate the targets
Browse files Browse the repository at this point in the history
  • Loading branch information
TuxSH committed May 19, 2017
1 parent 9515fff commit f5ce5e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
.PHONY: all
all: boot9strap

.PHONY: boot9strap
boot9strap:
mkdir -p out
mkdir -p build
cd arm9_stage2 && $(MAKE)
armips boot9strap.s
python build_boot9strap_firm.py

.PHONY: clean
clean:
cd arm9_stage2 && $(MAKE) clean
rm -rf out
Expand Down

0 comments on commit f5ce5e2

Please sign in to comment.