diff options
author | Marcus Comstedt | 2006-06-03 14:05:51 +0000 |
---|---|---|
committer | Marcus Comstedt | 2006-06-03 14:05:51 +0000 |
commit | 2795f743db7e055e717512d376b4a1169b3997dd (patch) | |
tree | 414a4e3434235ec1ae95c450375a239b4530b290 /backends | |
parent | 178481f5b72dd7dbc9436e1f354dcfa6fc7c3e05 (diff) | |
download | scummvm-rg350-2795f743db7e055e717512d376b4a1169b3997dd.tar.gz scummvm-rg350-2795f743db7e055e717512d376b4a1169b3997dd.tar.bz2 scummvm-rg350-2795f743db7e055e717512d376b4a1169b3997dd.zip |
Cleaned up plugin_dist target, and added target "spotless".
svn-id: r22881
Diffstat (limited to 'backends')
-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 |