hamnet70-gnuradio-legacy/gr-hamnet70/make.sh

13 lines
115 B
Bash
Executable File

#!/bin/sh
set -e
mkdir -p build
cd build
cmake ..
make -j4
if [ "$1" == "install" ]; then
sudo make install
fi