Merge branch 'release/0.1.1'

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

View file

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

View file

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