Skip to content

Commit

Permalink
added makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
FabricatorZayac committed Mar 3, 2021
1 parent 8f190c3 commit 4843471
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
PREFIX ?= /usr

install:
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@cp -p lazywal-cli $(DESTDIR)$(PREFIX)/bin/lazywal-cli
@chmod 755 $(DESTDIR)$(PREFIX)/bin/lazywal-cli

uninstall:
@rm -rf $(DESTDIR)$(PREFIX)/bin/lazywal-cli

0 comments on commit 4843471

Please sign in to comment.