mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-20 06:10:00 -08:00
16 lines
329 B
Makefile
16 lines
329 B
Makefile
# 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
|