all: hello calc

hello:
	go build hello.go

calc:
	go build calc.go

clean:
	go clean
