mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-09-21 07:04:52 +02:00
9 lines
95 B
Bash
Executable File
9 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
mkdir -p /fwbuilder/build
|
|
cd /fwbuilder/build
|
|
cmake ..
|
|
make -j$(nproc)
|