go-fds/Makefile

12 lines
100 B
Makefile

CMDS= \
bin/fdslist
all: bin $(CMDS)
bin:
mkdir bin
bin/%: cmd/%.go *.go
go build -o $@ $<