forked from arvados/arvados
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (20 loc) · 680 Bytes
/
Copy pathMakefile
File metadata and controls
21 lines (20 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (C) The Arvados Authors. All rights reserved.
#
# SPDX-License-Identifier: AGPL-3.0
export WORKSPACE?=$(shell pwd)
help:
@echo >&2
@echo >&2 "There is no default make target here. Did you mean 'make test'?"
@echo >&2
@echo >&2 "More info:"
@echo >&2 " Installing --> http://doc.arvados.org/install"
@echo >&2 " Developing/contributing --> https://dev.arvados.org"
@echo >&2 " Project home --> https://arvados.org"
@echo >&2
@false
test:
build/run-tests.sh ${TEST_FLAGS}
packages:
build/run-build-packages-all-targets.sh ${PACKAGES_FLAGS}
test-packages:
build/run-build-packages-all-targets.sh --test-packages ${PACKAGES_FLAGS}