diff options
author | Valeri Karpov <valeri.karpov@10gen.com> | 2014-09-24 15:20:20 -0400 |
---|---|---|
committer | Valeri Karpov <valeri.karpov@10gen.com> | 2014-09-24 15:20:20 -0400 |
commit | b2deb72cfd7ce322e24927505dc0ee3a85c69855 (patch) | |
tree | 781ec3f67b3b2b3436fdb1a1325b024f0a55fcdd /Makefile | |
parent | c8c3d1e2ece8d207fd60baf032739d742ad2c673 (diff) | |
download | mongo-b2deb72cfd7ce322e24927505dc0ee3a85c69855.tar.gz |
TOOLS-215 import work from old repo
Former-commit-id: d92480cfd0327b50e05e9ce7b8125eccaec40bc8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |