go/Makefile @ ed5b606670fb default tip

More
author Steve Losh <steve@stevelosh.com>
date Thu, 29 Jan 2026 13:29:06 -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