-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
34 lines (26 loc) · 562 Bytes
/
justfile
File metadata and controls
34 lines (26 loc) · 562 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
# modshells - Development Tasks
set shell := ["bash", "-uc"]
set dotenv-load := true
project := "modshells"
# Show all recipes
default:
@just --list --unsorted
# Build
build:
@echo "TODO: Add build command"
# Test
test:
@echo "TODO: Add test command"
# Clean
clean:
@echo "TODO: Add clean command"
# Format
fmt:
@echo "TODO: Add format command"
# Lint
lint:
@echo "TODO: Add lint command"
# [AUTO-GENERATED] Multi-arch / RISC-V target
build-riscv:
@echo "Building for RISC-V..."
cross build --target riscv64gc-unknown-linux-gnu