Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(813)

Side by Side Diff: src/pkg/syscall/Makefile

Issue 1578041: code review 1578041: add Windows ForkExec, Syscall12 (Closed)
Patch Set: code review 1578041: add Windows ForkExec, Syscall12 Created 13 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/runtime/windows/thread.c ('k') | src/pkg/syscall/exec_unix.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include ../../Make.$(GOARCH) 5 include ../../Make.$(GOARCH)
6 6
7 TARG=syscall 7 TARG=syscall
8 GOFILES=\ 8 GOFILES=\
9 str.go\ 9 str.go\
10 exec.go\
11 syscall.go\ 10 syscall.go\
12 syscall_$(GOARCH).go\ 11 syscall_$(GOARCH).go\
13 syscall_$(GOOS).go\ 12 syscall_$(GOOS).go\
14 syscall_$(GOOS)_$(GOARCH).go\ 13 syscall_$(GOOS)_$(GOARCH).go\
15 zerrors_$(GOOS)_$(GOARCH).go\ 14 zerrors_$(GOOS)_$(GOARCH).go\
16 zsyscall_$(GOOS)_$(GOARCH).go\ 15 zsyscall_$(GOOS)_$(GOARCH).go\
17 zsysnum_$(GOOS)_$(GOARCH).go\ 16 zsysnum_$(GOOS)_$(GOARCH).go\
18 ztypes_$(GOOS)_$(GOARCH).go\ 17 ztypes_$(GOOS)_$(GOARCH).go\
19 18
20 GOFILES_freebsd=\ 19 GOFILES_freebsd=\
21 syscall_bsd.go\ 20 syscall_bsd.go\
22 syscall_unix.go\ 21 syscall_unix.go\
22 exec_unix.go\
23 23
24 GOFILES_darwin=\ 24 GOFILES_darwin=\
25 syscall_bsd.go\ 25 syscall_bsd.go\
26 syscall_unix.go\ 26 syscall_unix.go\
27 exec_unix.go\
27 28
28 GOFILES_linux=\ 29 GOFILES_linux=\
29 syscall_unix.go\ 30 syscall_unix.go\
31 exec_unix.go\
30 32
31 GOFILES_nacl=\ 33 GOFILES_nacl=\
32 syscall_unix.go\ 34 syscall_unix.go\
35 exec_unix.go\
36
37 GOFILES_windows=\
38 exec_windows.go
33 39
34 OFILES=\ 40 OFILES=\
35 asm_$(GOOS)_$(GOARCH).$O\ 41 asm_$(GOOS)_$(GOARCH).$O\
36 42
37 GOFILES+=$(GOFILES_$(GOOS)) 43 GOFILES+=$(GOFILES_$(GOOS))
38 44
39 include ../../Make.pkg 45 include ../../Make.pkg
OLDNEW
« no previous file with comments | « src/pkg/runtime/windows/thread.c ('k') | src/pkg/syscall/exec_unix.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b