mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-26 21:13:48 +00:00
11 lines
82 B
Text
11 lines
82 B
Text
|
#! /bin/sh
|
||
|
|
||
|
cd $1
|
||
|
PROG=$2
|
||
|
shift 2
|
||
|
rm -f *.lib *.a
|
||
|
$PROG $*
|
||
|
RET=$?
|
||
|
cd ..
|
||
|
exit $RET
|