diff --git a/Makefile b/Makefile index 04e9303..cbd15bb 100644 --- a/Makefile +++ b/Makefile @@ -103,11 +103,9 @@ $(BUILD): $(CURDIR)/source/ios_kernel/ios_kernel.bin.h @$(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: diff --git a/source/ios_usb/Makefile b/source/ios_usb/Makefile index 607ea72..1a7cd33 100644 --- a/source/ios_usb/Makefile +++ b/source/ios_usb/Makefile @@ -56,7 +56,6 @@ $(PROJECTNAME).bin: $(PROJECTNAME).elf @$(OBJCOPY) -j .text -j .rodata -j .data -O binary $(PROJECTNAME).elf $@ $(PROJECTNAME).bin.h: $(PROJECTNAME).bin - @xxd -i $< | sed "s/unsigned/static const unsigned/g;s/$(PROJECTNAME)$*/$(PROJECTNAME)/g" > $@ @raw2c $< @cp $(PROJECTNAME).c $@