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

9 lines
174 B
Makefile
Raw Normal View History

2023-06-24 17:56:52 +02:00
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