init 3gpp
This commit is contained in:
26
makefile
vendored
Executable file
26
makefile
vendored
Executable file
@@ -0,0 +1,26 @@
|
||||
GREEN=\033[0;1;92m
|
||||
NC=\033[0m
|
||||
|
||||
build: FORCE
|
||||
rm -fr logs # Old version log files
|
||||
mkdir -p build
|
||||
rm -fr build/*
|
||||
|
||||
# cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" . -B cmake-build-debug
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -G "CodeBlocks - Unix Makefiles" . -B cmake-build-release
|
||||
# cmake --build cmake-build-debug --target all
|
||||
cmake --build cmake-build-release --target all
|
||||
|
||||
cp cmake-build-release/nr-gnb build/
|
||||
cp cmake-build-release/nr-ue build/
|
||||
cp cmake-build-release/nr-cli build/
|
||||
cp cmake-build-release/libdevbnd.so build/
|
||||
cp tools/nr-binder build/
|
||||
|
||||
@printf "${GREEN}UERANSIM successfully built.${NC}\n"
|
||||
|
||||
FORCE:
|
||||
|
||||
clean:
|
||||
rm -fr build
|
||||
rm -fr cmake-build-release/
|
||||
Reference in New Issue
Block a user