1
0
mirror of https://github.com/golang/go synced 2024-10-04 15:21:22 -06:00
go/src/pkg/sync/Makefile

31 lines
481 B
Makefile
Raw Normal View History

# 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\
# 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