From f01b13f1d6ec30d466f2bac73bd74409d63268d2 Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 22 Jul 2020 15:16:27 +0200 Subject: [PATCH] Add make call to rebuild ios exploit when building, block setting a job number higher than 1 --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a72b756..04e9303 100644 --- a/Makefile +++ b/Makefile @@ -98,13 +98,17 @@ all: $(BUILD) $(BUILD): $(CURDIR)/source/ios_kernel/ios_kernel.bin.h @[ -d $@ ] || mkdir -p $@ - @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @$(MAKE) -j1 --no-print-directory -C $(CURDIR)/source/ios_usb -f $(CURDIR)/source/ios_usb/Makefile + @$(MAKE) -j1 --no-print-directory -C $(CURDIR)/source/ios_kernel -f $(CURDIR)/source/ios_kernel/Makefile + @$(MAKE) -j1 --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $(CURDIR)/source/ios_kernel/ios_kernel.bin.h: $(CURDIR)/source/ios_usb/ios_usb.bin.h @$(MAKE) --no-print-directory -C $(CURDIR)/source/ios_kernel -f $(CURDIR)/source/ios_kernel/Makefile + @$(MAKE) -j1 --no-print-directory -C $(CURDIR)/source/ios_kernel -f $(CURDIR)/source/ios_kernel/Makefile $(CURDIR)/source/ios_usb/ios_usb.bin.h: @$(MAKE) --no-print-directory -C $(CURDIR)/source/ios_usb -f $(CURDIR)/source/ios_usb/Makefile + @$(MAKE) -j1 --no-print-directory -C $(CURDIR)/source/ios_usb -f $(CURDIR)/source/ios_usb/Makefile #------------------------------------------------------------------------------- clean: @echo clean ...