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