mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-03 22:15:40 +01:00
10 lines
146 B
Bash
Executable File
10 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
git submodule init
|
|
git submodule update
|
|
mkdir firmware/hackrf_usb/build
|
|
cd firmware/hackrf_usb/build
|
|
cmake ..
|
|
make
|
|
cd ../../..
|