nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
169 bytes raw
1
#!/bin/sh
2
set -eu
3
4
mkdir -p build && cd build
5
"$NB_SRCDIR/configure" \
6
    --prefix="$NB_PREFIX" \
7
    --disable-werror
8
make -j"$NB_JOBS"
9
make install DESTDIR="$NB_OUT"