~rogpeppe/juju-core/azure

« back to all changes in this revision

Viewing changes to log/Makefile

  • Committer: Mathieu Lonjaret
  • Date: 2011-12-01 15:37:58 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: mathieu.lonjaret@gmail.com-20111201153758-0a0kkibpl6pge2ie
logger: use global vars, becomes a package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(GOROOT)/src/Make.inc
 
2
 
 
3
all: package
 
4
 
 
5
TARG=launchpad.net/juju/go/log
 
6
 
 
7
GOFILES=\
 
8
        log.go\
 
9
 
 
10
GOFMT=gofmt
 
11
BADFMT:=$(shell $(GOFMT) -l $(GOFILES) $(CGOFILES) $(wildcard *_test.go))
 
12
 
 
13
gofmt: $(BADFMT)
 
14
        @for F in $(BADFMT); do $(GOFMT) -w $$F && echo $$F; done
 
15
 
 
16
ifneq ($(BADFMT),)
 
17
ifneq ($(MAKECMDGOALS),gofmt)
 
18
$(warning WARNING: make gofmt: $(BADFMT))
 
19
endif
 
20
endif
 
21
 
 
22
include $(GOROOT)/src/Make.pkg
 
23