Makefile.template revision 18043
17400N/AMANDIR=/usr/share/man
17400N/AMANPAGES=$(wildcard *.*)
17400N/A
17400N/Ainstall:
17400N/A for mp in $(MANPAGES); do \
18043N/A section=`expr "$$mp" : '.*\.\([^./]*\)$$'`; \
17400N/A test -d $$section || install -d $(DESTDIR)$(MANDIR)/man$$section; \
17400N/A install --mode=0644 $$mp $(DESTDIR)$(MANDIR)/man$$section; \
17400N/A done