LEFT | RIGHT |
(no file at all) | |
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.inc | 5 include ../../Make.inc |
6 | 6 |
7 TARG=os | 7 TARG=os |
8 GOFILES=\ | 8 GOFILES=\ |
9 error.go\ | 9 error.go\ |
10 env.go\ | 10 env.go\ |
11 exec.go\ | 11 exec.go\ |
12 file.go\ | 12 file.go\ |
13 getwd.go\ | 13 getwd.go\ |
14 path.go\ | 14 path.go\ |
15 proc.go\ | 15 proc.go\ |
16 stat_$(GOOS).go\ | 16 stat_$(GOOS).go\ |
17 time.go\ | 17 time.go\ |
18 types.go\ | 18 types.go\ |
19 | 19 |
20 GOFILES_freebsd=\ | 20 GOFILES_freebsd=\ |
21 dir_unix.go\ | 21 dir_unix.go\ |
22 error_posix.go\ | 22 error_posix.go\ |
23 env_unix.go\ | 23 env_unix.go\ |
24 file_posix.go\ | 24 file_posix.go\ |
25 file_unix.go\ | 25 file_unix.go\ |
26 path_unix.go\ | 26 path_unix.go\ |
27 sys_bsd.go\ | 27 sys_bsd.go\ |
28 exec_posix.go\ | 28 exec_posix.go\ |
29 exec_unix.go\ | 29 exec_unix.go\ |
| 30 signal_unix.go\ |
30 | 31 |
31 GOFILES_darwin=\ | 32 GOFILES_darwin=\ |
32 dir_unix.go\ | 33 dir_unix.go\ |
33 error_posix.go\ | 34 error_posix.go\ |
34 env_unix.go\ | 35 env_unix.go\ |
35 file_posix.go\ | 36 file_posix.go\ |
36 file_unix.go\ | 37 file_unix.go\ |
37 path_unix.go\ | 38 path_unix.go\ |
38 sys_bsd.go\ | 39 sys_bsd.go\ |
39 exec_posix.go\ | 40 exec_posix.go\ |
40 exec_unix.go\ | 41 exec_unix.go\ |
| 42 signal_unix.go\ |
41 | 43 |
42 GOFILES_linux=\ | 44 GOFILES_linux=\ |
43 dir_unix.go\ | 45 dir_unix.go\ |
44 error_posix.go\ | 46 error_posix.go\ |
45 env_unix.go\ | 47 env_unix.go\ |
46 file_posix.go\ | 48 file_posix.go\ |
47 file_unix.go\ | 49 file_unix.go\ |
48 path_unix.go\ | 50 path_unix.go\ |
49 sys_linux.go\ | 51 sys_linux.go\ |
50 exec_posix.go\ | 52 exec_posix.go\ |
51 exec_unix.go\ | 53 exec_unix.go\ |
| 54 signal_unix.go\ |
52 | 55 |
53 GOFILES_windows=\ | 56 GOFILES_windows=\ |
54 dir_windows.go\ | 57 dir_windows.go\ |
55 error_posix.go\ | 58 error_posix.go\ |
56 env_windows.go\ | 59 env_windows.go\ |
57 file_posix.go\ | 60 file_posix.go\ |
58 file_windows.go\ | 61 file_windows.go\ |
59 path_windows.go\ | 62 path_windows.go\ |
60 sys_windows.go\ | 63 sys_windows.go\ |
61 exec_posix.go\ | 64 exec_posix.go\ |
62 exec_windows.go\ | 65 exec_windows.go\ |
| 66 signal_windows.go\ |
63 | 67 |
64 GOFILES_plan9=\ | 68 GOFILES_plan9=\ |
65 dir_plan9.go\ | 69 dir_plan9.go\ |
66 error_plan9.go\ | 70 error_plan9.go\ |
67 env_plan9.go\ | 71 env_plan9.go\ |
68 file_plan9.go\ | 72 file_plan9.go\ |
69 path_plan9.go\ | 73 path_plan9.go\ |
70 sys_plan9.go\ | 74 sys_plan9.go\ |
71 exec_plan9.go\ | 75 exec_plan9.go\ |
72 | 76 |
73 GOFILES+=$(GOFILES_$(GOOS)) | 77 GOFILES+=$(GOFILES_$(GOOS)) |
74 | 78 |
| 79 CLEANFILES+=signal_unix.go signal_windows.go |
| 80 |
75 include ../../Make.pkg | 81 include ../../Make.pkg |
| 82 |
| 83 signal_unix.go: ../syscall/zerrors_$(GOOS)_$(GOARCH).go |
| 84 ./mkunixsignals.sh $< > $@ || rm -f $@ |
| 85 |
| 86 signal_windows.go: ../syscall/ztypes_$(GOOS)_$(GOARCH).go |
| 87 ./mkunixsignals.sh $< > $@ || rm -f $@ |
LEFT | RIGHT |