21 lines
248 B
Makefile
21 lines
248 B
Makefile
#
|
|
.DEFAULT: all
|
|
.PHONY: all clean test
|
|
|
|
#
|
|
DIST?= dist/
|
|
GO?= go
|
|
|
|
#
|
|
all:: dist/ir-bm25 dist/ir-tfidf dist/news-cna
|
|
@true
|
|
|
|
dist/%:: cmd/%/* internal/**
|
|
"${GO}" build -o "${DIST}" ./cmd/$(notdir $@)
|
|
|
|
clean::
|
|
rm -rf "${DIST}"
|
|
|
|
test::
|
|
go test ./...
|