Codebase list pollen / 1d14ec32-3e18-45a7-a3d3-8770bad7a8d8/main Makefile
1d14ec32-3e18-45a7-a3d3-8770bad7a8d8/main

Tree @1d14ec32-3e18-45a7-a3d3-8770bad7a8d8/main (Download .tar.gz)

Makefile @1d14ec32-3e18-45a7-a3d3-8770bad7a8d8/mainraw · history · blame

GO_BUILD=go build
GO_TEST=go test
GO_CLEAN=go clean

all: pollen

pollen: pollen.go
	$(GO_BUILD) -o $@ $<

test: pollen.go pollen_test.go
	$(GO_TEST)

clean:
	$(RM) pollen

.PHONY: all clean test