mirror of
https://github.com/cetic/unikernels.git
synced 2024-12-26 08:13:26 +07:00
8 lines
59 B
Bash
8 lines
59 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p build
|
||
|
pushd build
|
||
|
cmake ..
|
||
|
make
|
||
|
popd
|