# Edit this to enable/disable/modify parallel compiles.
PARALLEL="-j 2"
+# Edit this to enable/disable building certain components.
+BUILD_SIGROK_FIRMWARE_FX2LAFW=0
+
# Uncomment the following lines to build with clang and run scan-build.
# export CC=clang
# export CXX=clang++
make install $V
cd ../..
+if [ $BUILD_SIGROK_FIRMWARE_FX2LAFW = 1 ]; then
# sigrok-firmware-fx2lafw
$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
cd sigrok-firmware-fx2lafw
make $PARALLEL $V
make install $V
cd ../..
+fi
# sigrok-cli
$GIT_CLONE $REPO_BASE/sigrok-cli