Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | #! /bin/sh |
2 | |||||
3 | prefix=stock_ | ||||
4 | list= | ||||
5 | |||||
6 | for file in "$@" | ||||
7 | do | ||||
8 | name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'` | ||||
9 | list="$list $prefix$name $file" | ||||
10 | done | ||||
11 | |||||
12 | gdk-pixbuf-csource --raw --static --build-list $list | ||||
13 |