Skip to content

Commit

Permalink
remove flags for debugging from Makefile that were causing compiler c…
Browse files Browse the repository at this point in the history
…rashes on build. fixes inconshreveable#126
  • Loading branch information
inconshreveable committed May 16, 2014
1 parent f22ce57 commit 90f6158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ deps: assets
go get -tags '$(BUILDTAGS)' -d -v ngrok/...

server: deps
go install -gcflags "-N -l" -tags '$(BUILDTAGS)' ngrok/main/ngrokd
go install -tags '$(BUILDTAGS)' ngrok/main/ngrokd

fmt:
go fmt ngrok/...

client: deps
go install -gcflags "-N -l" -tags '$(BUILDTAGS)' ngrok/main/ngrok
go install -tags '$(BUILDTAGS)' ngrok/main/ngrok

assets: client-assets server-assets

Expand Down

0 comments on commit 90f6158

Please sign in to comment.