gearman-go/example/Makefile

22 lines
396 B
Makefile
Raw Normal View History

2011-05-18 20:24:59 +08:00
# 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=\
# worker.go\
CLEANFILES+= worker client
2011-05-18 20:24:59 +08:00
include $(GOROOT)/src/Make.pkg
%: %.go
$(GC) $*.go
$(LD) -o $@ $*.$O
2011-05-24 13:20:22 +08:00
fmt:
gofmt -spaces=true -tabwidth=4 -w=true -tabindent=false ./