mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-28 09:06:44 -06:00
957a70e560
The current manpage installation gzips the files in place and requests confirmation before overwriting existing files. Add -f to prevent prompting. We should consider not gzipping the files in place.
23 lines
358 B
Makefile
23 lines
358 B
Makefile
MANDIR = $(DESTDIR)/usr/share/man
|
|
|
|
MANFILES=\
|
|
ipa-addgroup.1 \
|
|
ipa-adduser.1 \
|
|
ipa-delgroup.1 \
|
|
ipa-deluser.1 \
|
|
ipa-findgroup.1 \
|
|
ipa-finduser.1 \
|
|
ipa-groupmod.1 \
|
|
ipa-passwd.1 \
|
|
ipa-usermod.1
|
|
|
|
all: ;
|
|
|
|
install:
|
|
mkdir -p $(MANDIR)/man1
|
|
@for i in $(MANFILES) ; do install -m 644 $$i $(MANDIR)/man1 ; gzip -f $(MANDIR)/man1/$$i ; done
|
|
|
|
clean:
|
|
|
|
test:
|