13 lines
134 B
Bash
Executable File
13 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Copyright (c) 2026, Mirocom Laboratories
|
|
# Provided under the BSD-3 clause
|
|
#
|
|
|
|
build() {
|
|
cd src/; make -j1
|
|
}
|
|
|
|
build
|