diff options
-rw-r--r-- | backends/dc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/dc/Makefile b/backends/dc/Makefile index 48c20fb175..8f19bfb53c 100644 --- a/backends/dc/Makefile +++ b/backends/dc/Makefile @@ -48,9 +48,11 @@ SCUMMVM.BIN : scummvm.bin scramble $< $@ plugin_dist : - find . -name '*.plg' | while read p; do \ + for p in plugins/*.plg; do \ sh-elf-strip -g -o "`basename \"$$p\" | tr '[:lower:]' '[:upper:]'`" "$$p"; \ done dist : SCUMMVM.BIN plugins plugin_dist +spotless : distclean + $(RM) SCUMMVM.BIN scummvm.bin *.PLG |