mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-20 03:38:43 +00:00
10 lines
82 B
Bash
Executable file
10 lines
82 B
Bash
Executable file
#! /bin/sh
|
|
|
|
cd $1
|
|
PROG=$2
|
|
shift 2
|
|
rm -f *.lib *.a
|
|
$PROG $*
|
|
RET=$?
|
|
cd ..
|
|
exit $RET
|