Aegisub/core/posix/genres.sh
David Lamparter 4036f73e43 autoconf / automake
Originally committed to SVN as r240.
2006-03-25 16:14:24 +00:00

17 lines
332 B
Bash

#!/bin/sh
RESFILE="$1"
egrep -v "^(#|/|.$)" $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