Russ Cox | bf3dd3f | 2008-12-04 12:51:36 -0800 | [diff] [blame] | 1 | # Copyright 2009 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 | |
Sergio Luis O. B. Correia | 6fc8207 | 2009-11-23 17:32:51 -0800 | [diff] [blame] | 5 | include ../../Make.$(GOARCH) |
Russ Cox | bf3dd3f | 2008-12-04 12:51:36 -0800 | [diff] [blame] | 6 | |
Russ Cox | 3b864e4 | 2009-08-12 13:18:37 -0700 | [diff] [blame] | 7 | TARG=sync |
| 8 | GOFILES=\ |
| 9 | mutex.go\ |
Russ Cox | bf3dd3f | 2008-12-04 12:51:36 -0800 | [diff] [blame] | 10 | |
Russ Cox | 3b864e4 | 2009-08-12 13:18:37 -0700 | [diff] [blame] | 11 | OFILES=\ |
Russ Cox | bf3dd3f | 2008-12-04 12:51:36 -0800 | [diff] [blame] | 12 | asm_$(GOARCH).$O\ |
Russ Cox | bf3dd3f | 2008-12-04 12:51:36 -0800 | [diff] [blame] | 13 | |
Sergio Luis O. B. Correia | 6fc8207 | 2009-11-23 17:32:51 -0800 | [diff] [blame] | 14 | include ../../Make.pkg |