go/Makefile @ a362de5d1aa1

More
author Steve Losh <steve@stevelosh.com>
date Thu, 23 Jan 2020 23:35:15 -0500
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