16 lines
264 B
Bash
Executable file
16 lines
264 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo -e "\nCompiling Bluekitchen BT programs"
|
|
sudo apt install cmake software-properties-common -y
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../
|
|
make -j
|
|
cd ../
|
|
|
|
echo -e "\n\nBuilding external h4bcm dissector"
|
|
cd dissectors
|
|
./build.sh
|
|
cd ../
|
|
|
|
echo "Done!"
|