I don't quite understand where "go run" comes into this. In your
Makefile, both options use "go build".
"make list" is doing something dubious:
go_sources := $(shell ls *.go)
...
list: main/main.go $(go_sources)
go build -o $@ $<
That is, I think you're trying to compile "main/main.go" and "types.go" at the same time into a single object file. But types.go is "package types" whereas main.go is "package main". That should give you an error; if it doesn't, that makes me suspect that go_sources is in fact empty. The "make list" output you show in README.txt appears to confirm this:
$ make
go build -o list main/main.go # <<< note that no additional sources are listed on the command line
In main.go, there is a pretty clear error that the compiler calls out in line 46:
main/main.go:46:15: undefined: Abstract
var abstract Abstract = types.Init()
and as far as I can see, it's correct: you have no type "Abstract" in package main in main.go (in otherwise, you should be referring to "types.Abstract")