A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

checkwps: Update the cleanall script and documentation

Change-Id: I170875f2b199ec5395a8b66976a8bc17d9eb85f8

+4 -4
+1 -3
tools/checkwps/README
··· 10 10 11 11 Just run the ./buildall.sh script 12 12 13 - 14 13 To remove all compiled files 15 14 ---------------------------- 16 15 17 16 ./cleanall.sh 18 - 19 17 20 18 To add a new target 21 19 ------------------- 22 20 23 - Add $target and $modelname from tools/configure to targets.txt 21 + No action necessary, list of targets is parsed out of the configure script
+3 -1
tools/checkwps/cleanall.sh
··· 2 2 rootdir=`dirname $0` 3 3 outdir=$rootdir/output 4 4 5 - make clean # make clean the build dir first 5 + if [ -f Makefile ] ; then 6 + make clean # make clean the build dir first 7 + fi 6 8 rm -f autoconf.h 7 9 rm -f Makefile 8 10 awk -f $rootdir/parse_configure.awk $rootdir/../configure | (