Report only fatal errors when building binaries for hwsim testing.
Signed-off-by: Jouni Malinen <j@w1.fi>
esac
done
+echo "Building wpa_supplicant"
cd ../../wpa_supplicant
if [ ! -e .config -o $force_config -eq 1 ]; then
cp ../tests/hwsim/example-wpa_supplicant.config .config
fi
fi
-make clean
-make -j8
+make clean > /dev/null
+make QUIET=1 -j8
+echo "Building hostapd"
cd ../hostapd
if [ ! -e .config -o $force_config -eq 1 ]; then
cp ../tests/hwsim/example-hostapd.config .config
fi
fi
-make clean
-make -j8 hostapd hostapd_cli hlr_auc_gw
+make clean > /dev/null
+make QUIET=1 -j8 hostapd hostapd_cli hlr_auc_gw
+
+echo "Building wlantest"
cd ../wlantest
-make clean
-make -j8
+make clean > /dev/null
+make QUIET=1 -j8 > /dev/null
+
+echo "Building TNC testing tools"
cd ../tests/hwsim/tnc
-make clean
-make -j8
+make clean > /dev/null
+make QUIET=1 -j8
cd ..
ALL=libhostap_imc.so libhostap_imv.so libhostap2_imc.so libhostap2_imv.so
all: $(ALL)
+Q=@
+E=echo
+ifeq ($(V), 1)
+Q=
+E=true
+endif
+ifeq ($(QUIET), 1)
+Q=@
+E=true
+endif
+
lib%.so: %.c
- $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $<
+ $(Q)$(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $<
+ @$(E) " CC " $@
clean:
rm -f $(ALL)