summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValeri Karpov <valeri.karpov@10gen.com>2014-09-24 15:20:20 -0400
committerValeri Karpov <valeri.karpov@10gen.com>2014-09-24 15:20:20 -0400
commitb2deb72cfd7ce322e24927505dc0ee3a85c69855 (patch)
tree781ec3f67b3b2b3436fdb1a1325b024f0a55fcdd /Makefile
parentc8c3d1e2ece8d207fd60baf032739d742ad2c673 (diff)
downloadmongo-b2deb72cfd7ce322e24927505dc0ee3a85c69855.tar.gz
TOOLS-215 import work from old repo
Former-commit-id: d92480cfd0327b50e05e9ce7b8125eccaec40bc8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7776666db90..224750403f8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,10 @@
+KERBEROS_FLAGS=-tags sasl
+
mongotop-kerberos:
- go build -o mongotop -tags sasl src/github.com/mongodb/mongo-tools/mongotop/main/main.go
+ go build -o mongotop $(KERBEROS_FLAGS) src/github.com/mongodb/mongo-tools/mongotop/main/main.go
mongotop:
go build -o mongotop src/github.com/mongodb/mongo-tools/mongotop/main/main.go
+
+mongoexport-kerberos:
+ go build -o mongoexport $(KERBEROS_FLAGS) src/github.com/mongodb/mongo-tools/mongoexport/main/mongoexport.go