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