Jintao 50c46e6857 Add LingYao
Change-Id: Iae6634ce565940904ee320c678d0f77473bebb90
2025-01-03 16:08:55 +08:00

20 lines
339 B
Bash

# SPDX-License-Identifier: GPL-2.0-only
# Copyright (c) 2023, Jaguar Micro. All rights reserved.
#!/usr/bin/env bash
function build_core() {
pushd crete-core
make clean
make
make install
popd
}
function build_vnet() {
pushd crete-vnet
make clean
make
popd
}
build_core
build_vnet