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