LEFT | RIGHT |
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=cmath | 7 TARG=cmath |
8 | 8 |
9 OFILES_amd64=\ | 9 GOFILES=\ |
10 | |
11 OFILES_386=\ | |
12 » abs_386.$O\ | |
13 » phase_386.$O\ | |
14 | |
15 OFILES=\ | |
16 » $(OFILES_$(GOARCH)) | |
17 | |
18 ALLGOFILES=\ | |
19 abs.go\ | 10 abs.go\ |
20 asin.go\ | 11 asin.go\ |
21 conj.go\ | 12 conj.go\ |
22 exp.go\ | 13 exp.go\ |
23 isinf.go\ | 14 isinf.go\ |
24 isnan.go\ | 15 isnan.go\ |
25 log.go\ | 16 log.go\ |
26 phase.go\ | 17 phase.go\ |
27 polar.go\ | 18 polar.go\ |
28 pow.go\ | 19 pow.go\ |
29 rect.go\ | 20 rect.go\ |
30 sin.go\ | 21 sin.go\ |
31 sqrt.go\ | 22 sqrt.go\ |
32 tan.go\ | 23 tan.go\ |
33 | 24 |
34 NOGOFILES=\ | |
35 $(subst _$(GOARCH).$O,.go,$(OFILES_$(GOARCH))) | |
36 | |
37 GOFILES=\ | |
38 $(filter-out $(NOGOFILES),$(ALLGOFILES))\ | |
39 $(subst .go,_decl.go,$(NOGOFILES))\ | |
40 | |
41 include ../../Make.pkg | 25 include ../../Make.pkg |
LEFT | RIGHT |