installer: fix incremental builds

Building "sof" does not rebuild the .ri firmware file. Switch to the
"bin" target which is what ./scripts/xtensa-build-all.sh builds.

Fixes: 479809663e22 ("installer: (re)build firmware, topologies and user
space tools)

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
(cherry picked from commit 21f4e74dd70992e1d5237648b5f2773908dc2f1c)
diff --git a/installer/GNUmakefile b/installer/GNUmakefile
index 858f959..2dc89bc 100644
--- a/installer/GNUmakefile
+++ b/installer/GNUmakefile
@@ -157,7 +157,7 @@
 ${BUILD_SOF_RIS}: ${BUILDS_ROOT}/build_%_${TOOLCHAIN}/sof.ri: | ${BUILDS_ROOT}
 	cd ${BUILDS_ROOT} && bdir="$$(dirname $@)" &&  \
       if [ -d $${bdir} ] && [ xcc != "${TOOLCHAIN}" ] ; then \
-        cmake --build $${bdir} -- sof; else \
+        cmake --build $${bdir} -- bin; else \
       $(CURDIR)/../scripts/xtensa-build-all.sh $*; fi