mirror of
https://github.com/pygos/build.git
synced 2024-11-23 03:29:46 +01:00
17 lines
208 B
Text
17 lines
208 B
Text
|
prepare() {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
deploy() {
|
||
|
local INPUT="$1"
|
||
|
local OUTPUT="$2"
|
||
|
local DEPLOY="$3"
|
||
|
|
||
|
rsync -aH --files-from="$SCRIPTDIR/cfg/$CFG/libgcc_files.txt" \
|
||
|
"$TCDIR/$TARGET" "$DEPLOY"
|
||
|
}
|