Skip to content

Commit

Permalink
Delete raw elf after packing
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmicScale committed Jul 22, 2024
1 parent 604192b commit 86553ab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
EE_BIN = PS1VModeNeg.elf
EE_BIN_PACKED = PS1VModeNegPacked.elf
EE_BIN = PS1VModeNegRaw.elf
EE_BIN_PACKED = PS1VModeNeg.elf
EE_OBJS = main.o cnf_lite.o

EE_INCS := -I$(PS2SDK)/ee/include -I$(PS2SDK)/common/include -I.
Expand All @@ -16,9 +16,10 @@ all: $(EE_BIN_PACKED)
$(EE_BIN_PACKED): $(EE_BIN)
echo "Compressing..."
ps2-packer $< $@
rm -f $(EE_BIN)

clean:
rm -f $(EE_OBJS) $(EE_BIN) $(EE_BIN_PACKED)
rm -f $(EE_OBJS) $(EE_BIN_PACKED)

include $(PS2SDK)/Defs.make
include $(PS2SDK)/samples/Makefile.eeglobal

0 comments on commit 86553ab

Please sign in to comment.