From 90a38ca30ea05a07c3b4b488c173f807b3334c5f Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 8 May 2020 03:21:47 -0700 Subject: [PATCH] make: dependency fixes --- fusee/fusee-primary/Makefile | 2 +- stratosphere/boot/Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fusee/fusee-primary/Makefile b/fusee/fusee-primary/Makefile index 98fa93e81..3124e7925 100644 --- a/fusee/fusee-primary/Makefile +++ b/fusee/fusee-primary/Makefile @@ -119,7 +119,7 @@ all: check_rebootstub $(BUILD) check_rebootstub: @$(MAKE) -C $(AMS)/exosphere/rebootstub all -$(BUILD): +$(BUILD): check_rebootstub @[ -d $@ ] || mkdir -p $@ @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile diff --git a/stratosphere/boot/Makefile b/stratosphere/boot/Makefile index 8fa028c65..d7e1a1e7a 100644 --- a/stratosphere/boot/Makefile +++ b/stratosphere/boot/Makefile @@ -121,6 +121,8 @@ $(OUTPUT).kip : $(OUTPUT).elf $(OUTPUT).elf : $(OFILES) +boot_power_utils.o: fusee_primary.bin.o fusee_primary_bin.h + #--------------------------------------------------------------------------------- # you need a rule like this for each extension you use as binary data #---------------------------------------------------------------------------------