mirror of
https://github.com/emmericp/MoonGen
synced 2025-10-05 23:52:51 +02:00
17 lines
200 B
Bash
Executable File
17 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
(
|
|
cd $(dirname "${BASH_SOURCE[0]}")
|
|
|
|
#update and init only libmoon, libmoons build.sh will do the rest recursivly
|
|
git submodule update --init
|
|
|
|
|
|
(
|
|
cd libmoon
|
|
./build.sh $@ --moongen
|
|
)
|
|
|
|
)
|
|
|