Left: | ||
Right: |
OLD | NEW |
---|---|
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=os/signal | 7 TARG=os/signal |
8 GOFILES=\ | 8 GOFILES=\ |
9 signal.go\ | 9 signal.go\ |
10 unix_signals.go\ | |
rsc
2010/01/07 16:30:06
Might as well call it unix.go. You're already in
dsymonds
2010/01/07 22:58:17
Done.
| |
11 | |
12 CLEANFILES=unix_signals.go | |
rsc
2010/01/07 16:30:06
probably CLEANFILES+=unix.go
(s/=/+=/) just in cas
dsymonds
2010/01/07 22:58:17
Done.
| |
10 | 13 |
11 include ../../../Make.pkg | 14 include ../../../Make.pkg |
15 | |
16 unix_signals.go: ../../syscall/zerrors_$(GOOS)_$(GOARCH).go | |
17 @echo "// Automatically generated. Do not edit!" > $@ | |
rsc
2010/01/07 16:30:06
Please drop all the @.
It's important to see what'
dsymonds
2010/01/07 22:58:17
Done.
| |
18 @echo "package signal" >> $@ | |
19 @echo 'import "syscall"' >> $@ | |
20 @echo "const (" >> $@ | |
21 @gawk '/^[ \t]*SIG/ { print "\t" $$1 "\t= UnixSignal(syscall." $$1 ")" } ' $< >> $@ | |
rsc
2010/01/07 16:30:06
Please drop all the @.
It's important to see what'
dsymonds
2010/01/07 22:58:17
Done.
| |
22 @echo ")" >> $@ | |
OLD | NEW |