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

Side by Side Diff: src/pkg/os/signal/Makefile

Issue 183142: code review 183142: Replicate signal names from syscall in os/signal. (Closed)
Patch Set: code review 183142: Replicate signal names from syscall in os/signal. Created 15 years, 2 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 | « .hgignore ('k') | src/pkg/os/signal/signal_test.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=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 ")" >> $@
OLDNEW
« no previous file with comments | « .hgignore ('k') | src/pkg/os/signal/signal_test.go » ('j') | no next file with comments »

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