forked from tezos/riscv-pvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (27 loc) · 1.13 KB
/
Makefile
File metadata and controls
45 lines (27 loc) · 1.13 KB
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
# SPDX-FileCopyrightText: 2025 TriliTech <contact@trili.tech>
#
# SPDX-License-Identifier: MIT
### Generic top-level targets
all: riscv/all jstz/all dummy/all block-cache-tester/all etherlink/all
build-deps: riscv/build-deps jstz/build-deps etherlink/build-deps
build-deps-slim: riscv/build-deps-slim
check: riscv/check jstz/check dummy/check block-cache-tester/all etherlink/check
audit: riscv/audit
build: riscv/build jstz/build dummy/build block-cache-tester/build etherlink/build
test: riscv/test jstz/test etherlink/test
test-long: riscv/test-long
test-miri: riscv/test-miri
clean: riscv/clean jstz/clean dummy/clean block-cache-tester/clean etherlink/clean
### Target proxies
riscv/%:
@make -C src/riscv ${@:riscv/%=%}
jstz/%:
@make -C kernels/jstz ${@:jstz/%=%}
dummy/%:
@make -C kernels/dummy ${@:dummy/%=%}
block-cache-tester/%:
@make -C kernels/block-cache-tester ${@:block-cache-tester/%=%}
etherlink/%:
@make -C kernels/etherlink ${@:etherlink/%=%}
# Mark all non-pattern targets as phony to make sure they're always executed
.PHONY: all build-deps build-deps-slim check audit build test test-long test-miri clean