File: Makefile

package info (click to toggle)
pass-report 0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: sh: 127; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
PREFIX ?= /usr
DESTDIR ?=
LIBDIR ?= $(PREFIX)/lib
SYSTEM_EXTENSION_DIR ?= $(LIBDIR)/password-store/extensions

install:
	@install -v -d "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/"
	@install -v -m 0755 report.bash "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/report.bash"

uninstall:
	@rm -vf "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/report.bash"

.PHONY: install uninstall