fragattacks/research/build.sh

18 lines
299 B
Bash
Raw Normal View History

#!/bin/bash
2020-10-24 13:49:17 -04:00
# Copyright (c) 2020, Mathy Vanhoef <mathy.vanhoef@nyu.edu>
#
# This code may be distributed under the terms of the BSD license.
# See README for more details.
set -e
cd ../hostapd
cp defconfig .config
make clean
make -j2
cd ../wpa_supplicant
cp defconfig .config
make clean
make -j2