go-fds/Makefile

13 lines
120 B
Makefile

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