Before this patch, the Make build targets referred to a single Go file
to be built: src/main.gp. However after multiple files were added to
the ./src/ package, the make command failed.
This patch changes the Make targets so that they build the whole main
package at /src, rather than one single main.go file.
Before this patch, the Make build targets referred to a single Go file to be built:
src/main.gp
. However after multiple files were added to the ./src/ package, the make command failed.This patch changes the Make targets so that they build the whole main package at
/src
, rather than one singlemain.go
file.