You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
WESTON=$abs_builddir/../src/weston
|
|
|
|
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
|
|
|