Files
go-ir-playground/GNUmakefile
2024-01-29 00:49:19 +08:00

18 lines
188 B
Makefile

#
.DEFAULT: all
.PHONY: all clean
#
DIST?= dist/
GO?= go
#
all: dist/ir-tfidf
@true
dist/ir-tfidf: cmd/ir-tfidf/*
"${GO}" build -o "${DIST}" ./cmd/ir-tfidf
clean:
rm -rf "${DIST}"