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