diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7c7d62e --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# for GNU make +.PHONY: all build install test clean + +all: build + +build: src/unqlite.c + go build + +install: src/unqlite.c + go install + +clean: + rm -rf src/* + +test: + go test ./ + +src/unqlite.c: + git submodule init + git submodule update