Merge pull request #10 from nobonobo/develop

別フォルダから利用できなかったのを修正
This commit is contained in:
irieda 2013-12-01 21:22:16 -08:00
commit a265077155
2 changed files with 4 additions and 9 deletions

View file

@ -3,14 +3,13 @@
all: build
build: libunqlite.a
build: src/unqlite.c
go build
install: libunqlite.a
install: src/unqlite.c
go install
clean:
rm -f libunqlite.a
rm -rf src/*
test:
@ -19,7 +18,3 @@ test:
src/unqlite.c:
git submodule init
git submodule update
libunqlite.a: src/unqlite.c src/unqlite.h
gcc -c src/unqlite.c -I./src -DUNQLITE_ENABLE_THREADS=1
ar rv libunqlite.a unqlite.o

View file

@ -1,8 +1,8 @@
package unqlitego
/*
#cgo LDFLAGS: -L./ -lunqlite
#include "./src/unqlite.h"
#cgo CFLAGS: -DUNQLITE_ENABLE_THREADS=1 -Wno-unused-but-set-variable
#include "./src/unqlite.c"
#include <stdlib.h>
*/
import "C"