Generate ISO image

This commit is contained in:
2022-04-26 20:46:47 +02:00
parent bd32f9007a
commit 87aa34d177
4 changed files with 17 additions and 11 deletions

View File

@@ -83,11 +83,11 @@ $(TARGET).elf: $(OBJS)
$(LD) -o $(TARGET).elf $(LDFLAGS_all) $(LDFLAGS) $(OBJS) $(LIBS_all) $(LIBS)
#Strips the psexe
$(TARGET).ps-exe: $(TARGET).elf
$(TARGET).psexe: $(TARGET).elf
$(PREFIX)-objcopy $(addprefix -R , $(OVERLAYSECTION)) -O binary $< $@
#Rules section for default compilation and linking
all: $(TARGET).ps-exe
all: $(TARGET).psexe
clean:
rm -fr $(OUTPUT_DIR)