go/Makefile @ 48a26e13c94f

More
author Steve Losh <steve@stevelosh.com>
date Tue, 07 Jan 2020 17:16:44 -0800
parents dabb5f1ef3b2
children (none)
files := $(shell ls *.go)
names := $(files:.go=)

.PHONY: all clean $(names)

all: $(names)

$(names): %: bin/%

bin/%: %.go
	mkdir -p bin
	go build $<
	mv $(@F) bin/

clean:
	rm -rf bin