2012-04-12 12:54:14 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2012-12-07 13:50:31 -08:00
|
|
|
WESTON=$abs_builddir/../src/weston
|
2012-04-12 12:54:14 -04:00
|
|
|
|
2012-12-07 13:50:31 -08:00
|
|
|
case $1 in
|
|
|
|
|
*.la|*.so)
|
|
|
|
|
$WESTON --modules=$abs_builddir/.libs/${1/.la/.so}
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
WESTON_TEST_CLIENT_PATH=$abs_builddir/$1 $WESTON \
|
|
|
|
|
--modules=$abs_builddir/.libs/weston-test.so
|
|
|
|
|
esac
|