forked from yuxh/gearman-go
--HG-- rename : src/Makefile => src/gearman/Makefile rename : src/client.go => src/gearman/client.go rename : src/client/job.go => src/gearman/client/job.go rename : src/client_test.go => src/gearman/client_test.go rename : src/gearman.go => src/gearman/gearman.go rename : src/worker.go => src/gearman/worker.go rename : src/worker/job.go => src/gearman/worker/job.go rename : src/worker/jobclient.go => src/gearman/worker/jobclient.go rename : src/worker_test.go => src/gearman/worker_test.go
22 lines
428 B
Makefile
22 lines
428 B
Makefile
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
include $(GOROOT)/src/Make.inc
|
|
|
|
TARG=gearman
|
|
GOFILES=\
|
|
gearman.go\
|
|
worker/job.go\
|
|
worker/jobclient.go\
|
|
worker.go\
|
|
client/job.go\
|
|
client.go\
|
|
|
|
CLEANFILES+=gearman_test
|
|
|
|
include $(GOROOT)/src/Make.pkg
|
|
|
|
fmt:
|
|
gofmt -spaces=true -tabwidth=4 -w=true -tabindent=false ./
|