merge
This commit is contained in:
commit
ef0e8fcbec
1 changed files with 20 additions and 0 deletions
20
Makefile
Normal file
20
Makefile
Normal file
|
@ -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
|
Loading…
Reference in a new issue