forked from External/grumble
Add support for importing a server from a Murmur SQLite database. Add support for seralizing a server to disk 'freezing' (currently zlib-JSON based).
This commit is contained in:
parent
2eb5516d31
commit
3ae9881d91
11 changed files with 130730 additions and 55 deletions
16
pkg/sqlite/Makefile
Normal file
16
pkg/sqlite/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Copyright 2010 The Go Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style
|
||||
# license that can be found in the LICENSE file.
|
||||
|
||||
include $(GOROOT)/src/Make.inc
|
||||
|
||||
TARG=sqlite
|
||||
|
||||
CGOFILES=sqlite.go
|
||||
CGO_OFILES=sqlite3.o
|
||||
|
||||
ifeq ($(GOOS),linux)
|
||||
CGO_LDFLAGS=-lpthread -ldl
|
||||
endif
|
||||
|
||||
include $(GOROOT)/src/Make.pkg
|
||||
Loading…
Add table
Add a link
Reference in a new issue