forked from hail-is/hail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (40 loc) · 1.01 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
50
51
52
53
.DEFAULT_GOAL := default
default:
@echo Do not use this makefile to build hail, for information on how to \
build hail see: https://hail.is/docs/0.2/
@false
.PHONY: check-all
check-all: check-hail check-services check-benchmark-service
.PHONY: check-hail
check-hail:
$(MAKE) -C hail/python check
.PHONY: check-services
check-services: check-auth check-batch check-ci check-gear check-memory \
check-notebook check-web-common check-website
.PHONY: check-auth
check-auth:
$(MAKE) -C auth check
.PHONY: check-batch
check-batch:
$(MAKE) -C batch check
.PHONY: check-benchmark-service
check-benchmark-service:
$(MAKE) -C benchmark-service check
.PHONY: check-ci
check-ci:
$(MAKE) -C ci check
.PHONY: check-gear
check-gear:
$(MAKE) -C gear check
.PHONY: check-memory
check-memory:
$(MAKE) -C memory check
.PHONY: check-notebook
check-notebook:
$(MAKE) -C notebook check
.PHONY: check-web-common
check-web-common:
$(MAKE) -C web_common check
.PHONY: check-website
check-website:
$(MAKE) -C website check