mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-02 21:45:37 +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 ../..
|