Don't use wildcards to look for .go files in tests makefile
Tor Arne Vestbø authored
GNU Make's wildcard function does not recurse into subdirectories when
passed the '**' glob, which results in adding a dependency only to .go
files in the first level of subdirectories under the source root.

We shell out to 'find' instead, which catches all .go files in the
given directory.
f2dd060e