Hash :
be77462a
Author :
Thomas de Grivel
Date :
2023-01-21T15:08:35
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
# Makefile for help2man
# $Id: Makefile.in,v 1.3 2000/04/15 14:17:40 bod Exp $
SHELL = @SHELL@
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
infodir = @infodir@
man1dir = $(mandir)/man1
manext = .1
DESTDIR =
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_INFO = @INSTALL_INFO@
MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = $(srcdir)/mkinstalldirs
PERL = @PERL@
target = help2man
all: $(target)
install: $(target) $(target)$(manext) $(target).info
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) $(target) $(DESTDIR)$(bindir)/$(target)
$(MKINSTALLDIRS) $(DESTDIR)$(man1dir)
$(INSTALL_DATA) $(target)$(manext) \
$(DESTDIR)$(man1dir)/$(target)$(manext)
$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
$(INSTALL_DATA) $(target).info $(DESTDIR)$(infodir)/$(target).info
if test -f $(DESTDIR)$(infodir)/dir; \
then \
$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(target).info; \
fi
check: $(target)$(manext)
clean mostlyclean:
realclean:
-rm -f $(target) $(target)$(manext)
distclean: realclean
-rm -f config.cache config.log config.status Makefile
$(target): $(srcdir)/$(target).PL
-rm -f $@
$(PERL) $(srcdir)/$(target).PL --stdout >$@
chmod 555 $@
$(target)$(manext): $(target) $(srcdir)/$(target).aux
./$(target) --include=$(srcdir)/$(target).aux \
--output=$(target)$(manext) ./$(target)
$(target).info: $(srcdir)/$(target).texi
$(MAKEINFO) $? -o $@
Makefile: $(srcdir)/Makefile.in
./config.status