Add a skeleton of ir-tfidf and its related settings.

This commit is contained in:
Gea-Suan Lin
2024-01-29 00:49:19 +08:00
parent ee7ccd6887
commit 6ee597dc7f
3 changed files with 22 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
dist/

17
GNUmakefile Normal file
View File

@@ -0,0 +1,17 @@
#
.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}"

4
cmd/ir-tfidf/main.go Normal file
View File

@@ -0,0 +1,4 @@
package main
func main() {
}