-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (27 loc) · 793 Bytes
/
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
test: test_neural test_persist test_learn test_engine test_evaluation
test_persist:
@( go test ./persist/ )
test_neural:
@( go test )
test_learn:
@( go test ./learn/ )
test_engine:
@( go test ./engine/ )
test_engine:
@( go test ./evaluation/ )
goget:
@( \
go get github.com/breskos/gopher-learn; \
go get github.com/breskos/gopher-learn/persist; \
go get github.com/breskos/gopher-learn/learn; \
go get github.com/breskos/gopher-learn/engine; \
go get github.com/breskos/gopher-learn/evaluation; \
)
gogetu:
@( \
go get github.com/breskos/gopher-learn; \
go get github.com/breskos/gopher-learn/persist; \
go get github.com/breskos/gopher-learn/learn; \
go get github.com/breskos/gopher-learn/engine; \
go get github.com/breskos/gopher-learn/evaluation; \
)