valis-core 0.1.9

A library for workflow management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: all build install

all: build install

build:
	@echo "Building the CLI..."
	@cargo build --release
	@echo "Build complete."

install: build
	@echo "Copying the binary to the destination..."
	@mkdir -p ~/emacs.d/valis/
	@cp ./target/release/valis_cli ~/emacs.d/valis/valis
	@echo "Copy complete."