Bin to elf convert help

In makefile...
Code:
$(TARGET): $(PROGRAM)
    $(KOS_STRIP) --strip-unneeded $(PROGRAM)
    $(KOS_OBJCOPY) -R .stack -O binary $(PROGRAM) $(TARGET)
 
thanks for the solution, but then when i type in make in the terminal it tells me makefile: missing separator. idk how to fix it so can you help me please!
 
You need the whole makefile and it needs to be setup for doing kos stuff. Look at the source for my port of Doom:

.sbi is just a zip file meant for a DC disk burner app. The source and everything needed to build/run the game is in the archive.
 
Back
Top