We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3586f2f commit bce6d91Copy full SHA for bce6d91
Makefile
@@ -5,6 +5,8 @@
5
include $(GOROOT)/src/Make.$(GOARCH)
6
7
TARG=web
8
+GOFMT=gofmt -spaces=true -tabindent=false -tabwidth=4
9
+
10
GOFILES=\
11
fcgi.go\
12
request.go\
@@ -15,9 +17,9 @@ GOFILES=\
15
17
include $(GOROOT)/src/Make.pkg
16
18
19
format:
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w fcgi.go
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w request.go
20
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w scgi.go
21
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w servefile.go
22
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w web.go
23
- gofmt -spaces=true -tabindent=false -tabwidth=4 -w web_test.go
+ ${GOFMT} -w fcgi.go
+ ${GOFMT} -w request.go
+ ${GOFMT} -w scgi.go
+ ${GOFMT} -w servefile.go
24
+ ${GOFMT} -w web.go
25
+ ${GOFMT} -w web_test.go
0 commit comments