Files
sys/windows/Makefile
Alex Brainman c17938b803 go.sys/windows: keep windows syscall pointers live
apply latest changes made to syscall/mksyscall_windows.go

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews
https://golang.org/cl/152200043
2014-10-06 10:48:58 +11:00

13 lines
382 B
Makefile

# Copyright 2014 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.
all: zsyscall_windows.go
TMP=/tmp/mksyscall_windows
zsyscall_windows.go: syscall_windows.go security_windows.go
go build -o $(TMP) $(GOROOT)/src/syscall/mksyscall_windows.go
GOOS=windows $(TMP) $^ | gofmt > $@
rm $(TMP)