From 5c7d68176a9c85f985aafdf3afd989d4e9709f06 Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 28 Aug 2023 18:30:20 -0400 Subject: [PATCH] Fix Makefiles not deleting objects in source/psp/ --- MakePHAT | 2 ++ MakeSLIM | 2 ++ 2 files changed, 4 insertions(+) diff --git a/MakePHAT b/MakePHAT index b3cb356..98723cd 100644 --- a/MakePHAT +++ b/MakePHAT @@ -125,10 +125,12 @@ include $(PSPSDK)/lib/build.mak clean: rm -rf build/ + rm source/psp/*.o rm source/*.o clean-keep-eboot: rm -rf build/exec/ + rm source/psp/*.o rm source/*.o install: EBOOT.PBP diff --git a/MakeSLIM b/MakeSLIM index 43a6201..a691377 100644 --- a/MakeSLIM +++ b/MakeSLIM @@ -125,10 +125,12 @@ include $(PSPSDK)/lib/build.mak clean: rm -rf build/ + rm source/psp/*.o rm source/*.o clean-keep-eboot: rm -rf build/exec/ + rm source/psp/*.o rm source/*.o install: EBOOT.PBP