-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
49 lines (33 loc) · 1.17 KB
/
Makefile
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
include $(GOROOT)/src/Make.inc
TARG=go
GOFILES=src/go/go.go
O_FILES=point.$O cell.$O history.$O board.$O match.$O console_player.$O http_player.$O random_player.$O rpc_player.$O http_server.$O rpc_server.$O go.$O
all: $(O_FILES)
install: $(O_FILES)
include $(GOROOT)/src/Make.cmd
point.$O:
$(QUOTED_GOBIN)/$(GC) -o point.$O src/go/point.go
cell.$O:
$(QUOTED_GOBIN)/$(GC) -o cell.$O src/go/cell.go
history.$O:
$(QUOTED_GOBIN)/$(GC) -o history.$O src/go/history.go
board.$O:
$(QUOTED_GOBIN)/$(GC) -o board.$O src/go/board.go
player.$O:
$(QUOTED_GOBIN)/$(GC) -o player.$O src/go/player.go
console_player.$O:
$(QUOTED_GOBIN)/$(GC) -o console_player.$O src/go/console_player.go
http_player.$O:
$(QUOTED_GOBIN)/$(GC) -o http_player.$O src/go/http_player.go
random_player.$O:
$(QUOTED_GOBIN)/$(GC) -o random_player.$O src/go/random_player.go
rpc_player.$O:
$(QUOTED_GOBIN)/$(GC) -o rpc_player.$O src/go/rpc_player.go
match.$O:
$(QUOTED_GOBIN)/$(GC) -o match.$O src/go/match.go
http_server.$O:
$(QUOTED_GOBIN)/$(GC) -o http_server.$O src/go/http_server.go
rpc_server.$O:
$(QUOTED_GOBIN)/$(GC) -o rpc_server.$O src/go/rpc_server.go
go.$O:
$(QUOTED_GOBIN)/$(GC) -o go.$O src/go/go.go