This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/lib/mkprod.awk

18 lines
271 B
Awk
Raw Normal View History

2002-04-15 13:49:15 +00:00
# $Id$
#
2001-08-17 05:46:24 +00:00
BEGIN {
2002-06-30 12:48:44 +00:00
print "#include \"../config.h\""
2004-02-21 14:24:03 +00:00
print "#include \"mbselib.h\""
2001-08-17 05:46:24 +00:00
print ""
print "struct _ftscprod ftscprod[] = {"
}
/^[^;]/ {
if ($2 != "DROPPED")
2002-04-15 10:12:08 +00:00
print " {0x" $1 ",(char *)\"" $2 "\"},"
2001-08-17 05:46:24 +00:00
}
END {
print " {0xff,(char*)0L}"
print "};"
}