Merge branch 'release/0.1.0'

This commit is contained in:
nobonobo 2013-11-28 21:27:40 +09:00
commit b7ae1392a8
2 changed files with 18 additions and 4 deletions

View File

@ -1,11 +1,12 @@
language: go
go:
- 1.0
- 1.1
- tip
install: make all
install:
- go get github.com/r7kamura/gospel
- make install
script:
- go test ./
- make test

View File

@ -1,8 +1,21 @@
# for GNU make
.PHONY: all build install test clean
all: libunqlite.a
all: build
build: libunqlite.a
go build
install: libunqlite.a
go install
clean:
rm -f libunqlite.a
rm -rf src/*
test:
go test ./
src/unqlite.c:
git submodule init
git submodule update