forked from trustbloc/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (29 loc) · 643 Bytes
/
Makefile
File metadata and controls
40 lines (29 loc) · 643 Bytes
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
# Copyright SecureKey Technologies Inc.
#
# SPDX-License-Identifier: Apache-2.0
GO_CMD ?= go
ISSUER_REST_PATH=cmd/issuer-rest
.PHONY: all
all: checks unit-test
.PHONY: checks
checks: license lint
.PHONY: lint
lint:
@scripts/check_lint.sh
.PHONY: license
license:
@scripts/check_license.sh
unit-test:
@scripts/check_unit.sh
hydra-start:
@scripts/hydra_start.sh
hydra-configure:
@scripts/hydra_configure.sh
hydra-stop:
@scripts/hydra_stop.sh
hydra-test-app:
@scripts/hydra_test_app.sh
issuer-rest:
@echo "Building issuer-rest"
@mkdir -p ./build/bin
@cd ${ISSUER_REST_PATH} && go build -o ../../build/bin/issuer-rest main.go