aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/database/sql/driver/Makefile
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2012-01-19 16:04:26 -0800
committerBrad Fitzpatrick <bradfitz@golang.org>2012-01-19 16:04:26 -0800
commit7fc4c07172b7b6feb2da345511ad439fedaf876b (patch)
tree88637df85d0f813cbb80045811a2c341edb4a242 /src/pkg/database/sql/driver/Makefile
parent369454d7b2f3b03ee5bdfde1eae6092bace14951 (diff)
downloadgo-7fc4c07172b7b6feb2da345511ad439fedaf876b.tar.xz
database/sql: move from exp/sql
R=golang-dev, r CC=golang-dev https://golang.org/cl/5536076
Diffstat (limited to 'src/pkg/database/sql/driver/Makefile')
-rw-r--r--src/pkg/database/sql/driver/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pkg/database/sql/driver/Makefile b/src/pkg/database/sql/driver/Makefile
new file mode 100644
index 0000000000..564aaa6899
--- /dev/null
+++ b/src/pkg/database/sql/driver/Makefile
@@ -0,0 +1,12 @@
+# Copyright 2011 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 ../../../../Make.inc
+
+TARG=database/sql/driver
+GOFILES=\
+ driver.go\
+ types.go\
+
+include ../../../../Make.pkg