mirror of
https://github.com/golang/go
synced 2024-11-20 07:04:40 -07:00
d90e7cbac6
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
70 lines
1.0 KiB
Makefile
70 lines
1.0 KiB
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.
|
|
|
|
# DO NOT EDIT. Automatically generated by gobuild.
|
|
# gobuild -m >Makefile
|
|
|
|
D=
|
|
|
|
include $(GOROOT)/src/Make.$(GOARCH)
|
|
AR=gopack
|
|
|
|
default: packages
|
|
|
|
clean:
|
|
rm -rf *.[$(OS)] *.a [$(OS)].out _obj
|
|
|
|
test: packages
|
|
gotest
|
|
|
|
coverage: packages
|
|
gotest
|
|
6cov -g `pwd` | grep -v '_test\.go:'
|
|
|
|
%.$O: %.go
|
|
$(GC) -I_obj $*.go
|
|
|
|
%.$O: %.c
|
|
$(CC) $*.c
|
|
|
|
%.$O: %.s
|
|
$(AS) $*.s
|
|
|
|
O1=\
|
|
parse.$O\
|
|
|
|
O2=\
|
|
generic.$O\
|
|
struct.$O\
|
|
|
|
|
|
phases: a1 a2
|
|
_obj$D/json.a: phases
|
|
|
|
a1: $(O1)
|
|
$(AR) grc _obj$D/json.a parse.$O
|
|
rm -f $(O1)
|
|
|
|
a2: $(O2)
|
|
$(AR) grc _obj$D/json.a generic.$O struct.$O
|
|
rm -f $(O2)
|
|
|
|
|
|
newpkg: clean
|
|
mkdir -p _obj$D
|
|
$(AR) grc _obj$D/json.a
|
|
|
|
$(O1): newpkg
|
|
$(O2): a1
|
|
$(O3): a2
|
|
|
|
nuke: clean
|
|
rm -f $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D/json.a
|
|
|
|
packages: _obj$D/json.a
|
|
|
|
install: packages
|
|
test -d $(GOROOT)/pkg && mkdir -p $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D
|
|
cp _obj$D/json.a $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D/json.a
|