commit 27b67989a5e3d97708fbc94f37fdecaf625cbbfe
parent dc265ecde2eee2ebe256d8e33f77ec2cf3fba8bc
Author: Tomas Nemec <nemi@skaut.cz>
Date: Fri, 24 Sep 2021 22:48:53 +0200
feat: add fin-period to makefile
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/makefile b/makefile
@@ -6,8 +6,10 @@ all:
install:
@install -v -d "$(BINDIR)/" && install -m 0755 -v "./fin-check-invoices" "$(BINDIR)/fin-check-invoices"
+ @install -v -d "$(BINDIR)/" && install -m 0755 -v "./fio-period" "$(BINDIR)/fio-period"
uninstall: trun.lua
@rm -vrf "$(BINDIR)/fin-check-invoices"
+ @rm -vrf "$(BINDIR)/fio-period
.PHONY: all install uninstall