xref: /freebsd/usr.bin/lex/version.awk (revision 9e4c35f867aca020df8d01fb7371bf5ae1cc8a2d)
1# $FreeBSD$
2
3BEGIN {
4	FS = "[ \t\.\"]+"
5}
6
7{
8	if ($1 ~ /^#define$/ && $2 ~ /^VERSION$/) {
9		printf("%s.%s.%s\n", $3, $4, $5);
10	}
11}
12