summaryrefslogtreecommitdiff
path: root/src/lib/math/Makefile
blob: f1f24263c11d0d43c070e487933634d190749d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

CFLAGS=
O=6
CC=$(O)c
AS=$(O)a
GC=$(O)g

# TODO(r): building directly in the target makes internal dependencies self-consistent.
# need to address this a better way.
PKG=$(GOROOT)/pkg/math.a

O1=\
	atan.$O fabs.$O floor.$O fmod.$O hypot.$O log.$O pow10.$O sin.$O sqrt.$O tan.$O
O2=\
	asin.$O atan2.$O exp.$O
O3=\
	pow.$O sinh.$O
O4=\
	tanh.$O

install: $(PKG)

$(PKG): a1 a2 a3 a4

a1: $(O1)
	$(O)ar grc $(PKG) $(O1)

a2: $(O2)
	$(O)ar grc $(PKG) $(O2)

a3: $(O3)
	$(O)ar grc $(PKG) $(O3)

a4: $(O4)
	$(O)ar grc $(PKG) $(O4)

nuke:
	rm -f *.$(O) *.a $(PKG)

clean:
	rm -f *.$(O) *.a

%.$O:	%.go
	$(GC) $<