So I want to create a .iso file from boot.bin with UltraISO, I wrote a Makefile for this:
$(ISO_FILE): $(BOOT_BIN)
$(ULTRAISO) -bin2iso $(BOOT_BIN)
The problem is that when I build the project the UltraISO location gets merged with my build folders location (the one containing boot.bin).
Error
P.S. I know there are better alternatives like mkisofs, but I have to use windows for some time and UltraISO is the best choice for me.
Thank you in advance!
I tried many different commands, using Powershell, was talking to ChatGPT for like 2 hours.
I also tried replacing the ($(ULTRAISO)) with the full path of the file.
This should do what I need it to, but the addresses get merged as I said.
4