Aegisub/aegisub/posix/genres.sh
David Lamparter 06c2a7f6c3 ignore .cur files on posix
Originally committed to SVN as r1368.
2007-07-05 13:25:20 +00:00

17 lines
337 B
Bash

#!/bin/sh
RESFILE="$1"
egrep -v "\.cur|^(#|/|$)" $RESFILE | cut -d ' ' -f 1 | (
echo "#define static" >&4
echo "#ifndef _RES_H" >&5
echo "#define _RES_H" >&5
while read NAME
do echo "extern char *${NAME}_xpm[];" >&5
echo "#include \"../bitmaps/${NAME}_xpm.xpm\"" >&4
done
echo "#endif /* _RES_H */" >&5
) 4>res.cpp 5>res.h