Skip to content

Commit 5abfc73

Browse files
committed
Merge pull request hoisie#135 from apeacox/master
Refactor Makefile to decouple from filenames
2 parents d3156c8 + d57f883 commit 5abfc73

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

Makefile

+1-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
11
GOFMT=gofmt -s -tabs=false -tabwidth=4
22

3-
GOFILES=\
4-
fcgi.go\
5-
helpers.go\
6-
scgi.go\
7-
server.go\
8-
status.go\
9-
web.go\
3+
GOFILES=$(wildcard *.go **/*.go)
104

115
format:
126
${GOFMT} -w ${GOFILES}
13-
${GOFMT} -w web_test.go
14-
${GOFMT} -w examples/arcchallenge.go
15-
${GOFMT} -w examples/cookie.go
16-
${GOFMT} -w examples/hello.go
17-
${GOFMT} -w examples/multipart.go
18-
${GOFMT} -w examples/multiserver.go
19-
${GOFMT} -w examples/params.go
20-
${GOFMT} -w examples/logger.go
21-
${GOFMT} -w examples/tls.go
22-
${GOFMT} -w examples/streaming.go

0 commit comments

Comments
 (0)