mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-03 22:15:40 +01:00
8 lines
73 B
Bash
Executable File
8 lines
73 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
mkdir host/build
|
|
cd host/build
|
|
cmake ..
|
|
make
|
|
cd ../..
|