Side by Side Diff: src/pkg/sync/atomic/Makefile
Issue 4241041 :
code review 4241041: sync/atomic: new package (Closed)
Patch Set: diff -r b5fbdfb23f4f https://go.googlecode.com/hg
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/Makefile
src/pkg/sync/atomic/Makefile
src/pkg/sync/atomic/asm_386.s
src/pkg/sync/atomic/asm_amd64.s
src/pkg/sync/atomic/asm_arm.s
src/pkg/sync/atomic/atomic_test.go
src/pkg/sync/atomic/doc.go
OLD NEW
(Empty) 1 # Copyright 2011 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file.
4
5 include ../../../Make.inc
6
7 TARG=sync/atomic
8 GOFILES=\
9 doc.go\
10
11 OFILES=\
12 asm_$(GOARCH).$O\
13
14 ifeq ($(GOARCH),arm)
15 OFILES+=asm_$(GOOS)_$(GOARCH).$O
16 endif
17
18 include ../../../Make.pkg
OLD NEW