mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
To make libfaketime reproducible don't embed the timestamp in the gzip header. Motivation: https://reproducible-builds.org
15 lines
295 B
Makefile
15 lines
295 B
Makefile
INSTALL ?= install
|
|
|
|
PREFIX ?= /usr/local
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) -Dm0644 faketime.1 "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
|
|
gzip -nf "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
|
|
|
|
uninstall:
|
|
rm -f "${DESTDIR}${PREFIX}/share/man/man1/faketime.1.gz"
|
|
|
|
.PHONY: all install uninstall
|