mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
53 lines
2.3 KiB
Makefile
53 lines
2.3 KiB
Makefile
export CARGO_TARGET_DIR ?= ./target
|
|
export CARGO_NET_GIT_FETCH_WITH_CLI ?= true
|
|
DESTDIR ?= /
|
|
PREFIX ?= /usr/local
|
|
|
|
.PHONY: build-release
|
|
build-release:
|
|
cargo build -p lact --release
|
|
|
|
.PHONY: build-debug
|
|
build-debug:
|
|
cargo build -p lact
|
|
|
|
.PHONY: build-release-headless
|
|
build-release-headless:
|
|
cargo build -p lact --release --no-default-features --features=nvidia
|
|
|
|
.PHONY: install-resources
|
|
install-resources:
|
|
install -Dm644 res/lactd.service $(DESTDIR)$(PREFIX)/lib/systemd/system/lactd.service
|
|
install -Dm644 res/io.github.ilya_zlobintsev.LACT.desktop $(DESTDIR)$(PREFIX)/share/applications/io.github.ilya_zlobintsev.LACT.desktop
|
|
install -Dm644 res/io.github.ilya_zlobintsev.LACT.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/512x512/apps/io.github.ilya_zlobintsev.LACT.png
|
|
install -Dm644 res/io.github.ilya_zlobintsev.LACT.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/io.github.ilya_zlobintsev.LACT.svg
|
|
install -Dm644 res/io.github.ilya_zlobintsev.LACT.metainfo.xml $(DESTDIR)$(PREFIX)/share/metainfo/io.github.ilya_zlobintsev.LACT.metainfo.xml
|
|
install -Dm644 res/io.github.ilya_zlobintsev.LACT.policy $(DESTDIR)$(PREFIX)/share/polkit-1/actions/io.github.ilya_zlobintsev.LACT.policy
|
|
|
|
.PHONY: install
|
|
install: install-resources
|
|
install -Dm755 target/release/lact $(DESTDIR)$(PREFIX)/bin/lact
|
|
|
|
.PHONY: install-debug
|
|
install-debug: install-resources
|
|
install -Dm755 target/debug/lact $(DESTDIR)$(PREFIX)/bin/lact
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
rm $(DESTDIR)$(PREFIX)/bin/lact
|
|
rm $(DESTDIR)$(PREFIX)/lib/systemd/system/lactd.service
|
|
rm $(DESTDIR)$(PREFIX)/share/applications/io.github.ilya_zlobintsev.LACT.desktop
|
|
rm -f $(DESTDIR)$(PREFIX)/share/pixmaps/io.github.ilya_zlobintsev.LACT.png
|
|
rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/512x512/apps/io.github.ilya_zlobintsev.LACT.png
|
|
rm $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/io.github.ilya_zlobintsev.LACT.svg
|
|
rm $(DESTDIR)$(PREFIX)/share/metainfo/io.github.ilya_zlobintsev.LACT.metainfo.xml
|
|
rm $(DESTDIR)$(PREFIX)/share/polkit-1/actions/io.github.ilya_zlobintsev.LACT.policy
|
|
|
|
.PHONY: update-vulkan-schema
|
|
update-vulkan-schema:
|
|
curl -o lact-daemon/vulkan_schema.json https://schema.khronos.org/vulkan/profiles-0.8-latest.json
|
|
|
|
.PHONY: update-nvidia-headers
|
|
update-nvidia-headers:
|
|
cd lact-daemon/include/nvidia && ./update_kernel_files.sh
|