This repository has been archived on 2024-07-26. You can view files and clone it, but cannot push or open issues or pull requests.
tuigreet/Makefile
2023-06-24 16:56:52 +01:00

9 lines
174 B
Makefile

all:
true
install:
mkdir -p $(DESTDIR)/usr/bin/
cargo build --release
install target/release/tuigreet $(DESTDIR)/usr/bin/tuigreet
chmod 755 $(DESTDIR)/usr/bin/tuigreet