Fix Makefile VERSION grep to anchor on '^var SemVer'.
The previous grep 'SemVer\s*=' also matched the comment in version.go
that shows the -ldflags example, causing VERSION to expand to the full
ldflags string instead of '0.1.0'. Anchoring with '^var SemVer' ensures
only the actual Go variable declaration is matched.