summaryrefslogtreecommitdiff
path: root/src/syscall/Makefile
blob: 9ae0c6a72d6f15f928924927188c2253b96ac19e (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
48
49
50
# 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

PKG=$(GOROOT)/pkg/syscall.a

O1=\
	syscall.$O \
	errstr_$(GOOS).$O \

O2=\
	file_$(GOARCH)_$(GOOS).$O \
	syscall_$(GOARCH)_$(GOOS).$O \


install: nuke $(PKG)

$(PKG): a1 a2

a1: 	$(O1)
	$(O)ar grc $(PKG) $(O1)
	rm *.6

a2: 	$(O2)
	$(O)ar grc $(PKG) $(O2)
	rm *.6

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

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

%.$O:	%.c
	$(CC) $<

sys_file.$O:	sys_file.c sys_types.h $(OS_H)
	$(CC) -D$(GOARCH)_$(GOOS) $<

%.$O:	%.s
	$(AS) $<

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