Browse Source

fix Makefile to build the correct binaries for client/server targets

Alan Shreve 12 years ago
parent
commit
e0ff5ad359
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -8,13 +8,13 @@ deps:
 	go get -tags '$(BUILDTAGS)' -d -v ngrok/...
 	go get -tags '$(BUILDTAGS)' -d -v ngrok/...
 
 
 server: deps
 server: deps
-	go install -tags '$(BUILDTAGS)' ngrok/main/ngrok
+	go install -tags '$(BUILDTAGS)' ngrok/main/ngrokd
 
 
 fmt:
 fmt:
 	go fmt ngrok/...
 	go fmt ngrok/...
 
 
 client: deps
 client: deps
-	go install -tags '$(BUILDTAGS)' ngrok/main/ngrokd
+	go install -tags '$(BUILDTAGS)' ngrok/main/ngrok
 
 
 release-client: BUILDTAGS=release
 release-client: BUILDTAGS=release
 release-client: client
 release-client: client