1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

Allow the user to build with a prebuilt sept-secondary blob via a SEPT_ENC_PATH variable. (#365)

This commit is contained in:
thedax 2019-02-21 21:26:41 -05:00 committed by SciresM
parent 37161c5d11
commit 1970a52fc9

View file

@ -120,8 +120,12 @@ check_rebootstub:
@$(MAKE) -C $(AMS)/exosphere/rebootstub all @$(MAKE) -C $(AMS)/exosphere/rebootstub all
$(BUILD): $(BUILD):
ifeq ($(strip $(SEPT_ENC_PATH)),)
@[ -d $@ ] || mkdir -p $@ @[ -d $@ ] || mkdir -p $@
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
else
@cp $(SEPT_ENC_PATH) $(TOPDIR)/sept-secondary.enc
endif
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
clean: clean: