Files
libfaketime/man/Makefile
Daniel Kahn Gillmor 337581c040 allow overriding specific arguments without changing the Makefile
for example, now you can do:

 make PREFIX=/usr

without any modification to the Makefile and have it behave as
intended.
2013-06-11 10:10:14 -04:00

15 lines
294 B
Makefile

INSTALL ?= install
PREFIX ?= /usr/local
all:
install:
$(INSTALL) -Dm0644 faketime.1 "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
gzip -f "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
uninstall:
rm -f "${DESTDIR}${PREFIX}/share/man/man1/faketime.1.gz"
.PHONY: all install uninstall