| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 # Copyright 2010 The Go Authors. All rights reserved. | 1 # Copyright 2010 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=crypto/rand | 7 TARG=crypto/rand |
| 8 | 8 |
| 9 GOFILES=\ | 9 GOFILES=\ |
| 10 rand.go\ | 10 rand.go\ |
| 11 | 11 |
| 12 GOFILES_freebsd=\ | |
| 13 rand_unix.go\ | |
| 14 | |
| 15 GOFILES_darwin=\ | |
| 16 rand_unix.go\ | |
| 17 | |
| 18 GOFILES_linux=\ | |
| 19 rand_unix.go\ | |
| 20 | |
| 21 GOFILES_nacl=\ | |
| 22 rand_unix.go\ | |
| 23 | |
| 24 GOFILES_windows=\ | |
| 25 rand_windows.go\ | |
| 26 | |
| 27 GOFILES+=$(GOFILES_$(GOOS)) | |
| 28 | |
| 12 include ../../../Make.pkg | 29 include ../../../Make.pkg |
| OLD | NEW |