Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
Makefile (441B)
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 ./scripts/ccebuild install --no-build cce-fx
12
13 run:
14 cargo run --bin cce-fx
15
16 clean:
17 cargo clean