file manager
git clone https://git.lucas.co/cce-files.git
Makefile (543B)
1 .PHONY: build install run clean
2
3 build:
4 cargo build --release
5
6 # Binaries, helper scripts and user units are enumerated by ccebuild from
7 # cargo metadata, so this crate's extra [[bin]] targets are picked up without
8 # being named here — hand-listing them is what left cce-bevel and the keyring
9 # helpers uninstalled for weeks.
10 install: build
11 @command -v ccebuild >/dev/null || { echo "ccebuild not installed — run: make -C ../cce-compositor install"; exit 1; }
12 ccebuild install --no-build cce-files
13
14 run:
15 cargo run
16
17 clean:
18 cargo clean