X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/utils/blobdiff_plain/4b2959c1280d79c7da4d8755fef202c9074955d1..f6cacff935647909c82d3c9df8ea085e2b844276:/nntpid/Makefile?ds=sidebyside diff --git a/nntpid/Makefile b/nntpid/Makefile index 6dfb875..e83d80a 100644 --- a/nntpid/Makefile +++ b/nntpid/Makefile @@ -5,6 +5,9 @@ DESTDIR = . PREFIX = /usr/local BINDIR = $(PREFIX)/bin MANDIR = $(PREFIX)/man/man1 +INSTALL = install +IPROG =# flags for installing programs (default none) +IDATA = -m 0644 # flags for installing data all: nntpid.1 @@ -28,6 +31,6 @@ release: nntpid.1 install: nntpid.1 mkdir -p $(BINDIR) - install nntpid $(BINDIR)/nntpid + $(INSTALL) $(IPROG) nntpid $(BINDIR)/nntpid mkdir -p $(MANDIR) - install -m 0644 nntpid.1 $(MANDIR)/nntpid.1 + $(INSTALL) $(IDATA) nntpid.1 $(MANDIR)/nntpid.1