summaryrefslogtreecommitdiff
path: root/src/pkg/sync/Makefile
blob: fd8e5d9987e6e5157000eb96602c0d2afd511148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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 ../../Make.inc

TARG=sync
GOFILES=\
	mutex.go\
	once.go \
	rwmutex.go\
	waitgroup.go\

# 386-specific object files
OFILES_386=\
	asm_386.$O\

# amd64-specific object files
OFILES_amd64=\
	asm_amd64.$O\

GOARM?=6

# arm-specific object files
OFILES_arm=\
	asm_arm$(GOARM).$O\

OFILES=\
	$(OFILES_$(GOARCH))\

include ../../Make.pkg