21559a2d7d
There's no need to return to the original directory at the end of a script - the current working directory within the subshell that executes the script doesn't affect the working directory in the calling shell.
14 lines
934 B
Bash
Executable File
14 lines
934 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(git rev-parse --show-toplevel 2>/dev/null)" >/dev/null 2>&1
|
|
python build/mktargets.py --directory codec/decoder --library decoder
|
|
python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp
|
|
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude arm_arch_common_macro.S
|
|
python build/mktargets.py --directory codec/processing --library processing
|
|
|
|
python build/mktargets.py --directory codec/console/dec --binary h264dec
|
|
python build/mktargets.py --directory codec/console/enc --binary h264enc
|
|
python build/mktargets.py --directory test/encoder --prefix encoder_unittest
|
|
python build/mktargets.py --directory test/decoder --prefix decoder_unittest
|
|
python build/mktargets.py --directory test/api --prefix api_test
|
|
python build/mktargets.py --directory gtest --library gtest --out build/gtest-targets.mk --cpp-suffix .cc --include gtest-all.cc
|