Create Makefile

This commit is contained in:
ferrreo 2023-06-24 16:56:52 +01:00 committed by GitHub
parent f8c0d5784d
commit d7aa3fb661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
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