xref: /freebsd/usr.bin/lex/version.awk (revision 2a58b312b62f908ec92311d1bd8536dbaeb8e55b)
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