Files

53 lines
2.3 KiB
Makefile
Raw Permalink Normal View History

2023-01-01 20:16:16 +02:00
export CARGO_TARGET_DIR ?= ./target
export CARGO_NET_GIT_FETCH_WITH_CLI ?= true
DESTDIR ?= /
PREFIX ?= /usr/local
2023-01-01 20:16:16 +02:00
2025-05-26 22:45:52 +03:00
.PHONY: build-release
2023-01-01 20:16:16 +02:00
build-release:
cargo build -p lact --release
2024-11-08 21:04:02 +02:00
2025-05-26 22:45:52 +03:00
.PHONY: build-debug
2024-11-08 21:04:02 +02:00
build-debug:
cargo build -p lact
2025-05-26 22:45:52 +03:00
.PHONY: build-release-headless
build-release-headless:
cargo build -p lact --release --no-default-features --features=nvidia
2025-05-26 22:45:52 +03:00
.PHONY: install-resources
2024-11-08 21:04:02 +02:00
install-resources:
install -Dm644 res/lactd.service $(DESTDIR)$(PREFIX)/lib/systemd/system/lactd.service
2025-04-04 21:38:19 +03:00
install -Dm644 res/io.github.ilya_zlobintsev.LACT.desktop $(DESTDIR)$(PREFIX)/share/applications/io.github.ilya_zlobintsev.LACT.desktop
2026-01-24 09:37:18 -05:00
install -Dm644 res/io.github.ilya_zlobintsev.LACT.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/512x512/apps/io.github.ilya_zlobintsev.LACT.png
2025-04-04 21:38:19 +03:00
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
2023-01-01 20:16:16 +02:00
2025-05-26 22:45:52 +03:00
.PHONY: install
2024-11-08 21:04:02 +02:00
install: install-resources
install -Dm755 target/release/lact $(DESTDIR)$(PREFIX)/bin/lact
2025-05-26 22:45:52 +03:00
.PHONY: install-debug
2024-11-08 21:04:02 +02:00
install-debug: install-resources
install -Dm755 target/debug/lact $(DESTDIR)$(PREFIX)/bin/lact
2025-05-26 22:45:52 +03:00
.PHONY: uninstall
2023-01-01 20:16:16 +02:00
uninstall:
rm $(DESTDIR)$(PREFIX)/bin/lact
rm $(DESTDIR)$(PREFIX)/lib/systemd/system/lactd.service
2025-04-04 21:38:19 +03:00
rm $(DESTDIR)$(PREFIX)/share/applications/io.github.ilya_zlobintsev.LACT.desktop
2026-01-24 09:37:18 -05:00
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
2025-04-04 21:38:19 +03:00
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