aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-04 17:42:22 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-04 17:42:22 -0500
commit0f049721c6ab5b12d9425f908d1ff8c6c71a82cf (patch)
tree4ad5a0d7b8dcd8daf1d6307a58620b76f5c6d303 /Makefile
parent7182080ff46fdc0e67c1ecaf877f97cb44969482 (diff)
downloadcvez-0f049721c6ab5b12d9425f908d1ff8c6c71a82cf.tar.bz2
cvez-0f049721c6ab5b12d9425f908d1ff8c6c71a82cf.zip
add go-sqlite3 and sqlite_fts5 to build tags
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index effbbbc..ab8c41f 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,11 @@
# build binary
all:
- go build -ldflags='-s -w'
+ go build -tags='sqlite_fts5' -ldflags='-s -w'
# run all tests
test:
- go test -cover ./...
+ go test -tags='sqlite_fts5' -cover ./...
# run all tests, print result to stdout as json
testjson: