osvc

scripts to save some time with self-employed stuff
git clone git://gtms.dev/osvc
Log | Files | Refs

makefile (574B)


      1 PREFIX = /usr/local
      2 BINDIR = $(PREFIX)/bin
      3 
      4 all:
      5 	@echo "Nothing to do, try \"make install\" instead."
      6 
      7 install:
      8 	@install -v -d "$(BINDIR)/" && install -m 0755 -v "./fin-check-invoices" "$(BINDIR)/fin-check-invoices"
      9 	@install -v -d "$(BINDIR)/" && install -m 0755 -v "./fio-period" "$(BINDIR)/fio-period"
     10 	@install -v -d "$(BINDIR)/" && install -m 0755 -v "./fio-month-expense" "$(BINDIR)/fio-month-expense"
     11 
     12 uninstall: trun.lua
     13 	@rm -vrf "$(BINDIR)/fin-check-invoices"
     14 	@rm -vrf "$(BINDIR)/fio-period
     15 	@rm -vrf "$(BINDIR)/fio-month-expense
     16 
     17 .PHONY: all install uninstall