Aegisub/scripts/genres.awk
Amar Takhar b94357e8db Add genres.awk for res.h/res.cpp generation, not in use currently. The
scripts/ dir will hold build generation scripts.

Originally committed to SVN as r2523.
2008-12-26 04:07:45 +00:00

21 lines
387 B
Awk

# $Id$
! /CURSOR|^#|^$|^\// {
image[$1] = $1
}
END {
print("#define static") > RES_CPP
for (v in image) {
printf("#include \"../bitmaps/%s_xpm.xpm\"\n", image[v]) >> RES_CPP
}
print("#ifndef _RES_H") > RES_H
print("define _RES_H") >> RES_H
for (v in image) {
printf("extern char *%s_xpm[];\n", image[v]) >> RES_H
}
print("#endif /* _RES_H */") >> RES_H
}