This is a fully unsupported section. It incorporates changes
kindly submitted by Tulp users for their particular environnement.
We have not tested them and can't guarantee it works.

----


Silicon Graphics - IRIX 
(modifications given by Roger L. Nelson <rnelson@mail.wsu.edu>)

Sendmail.cf = /usr/lib/sendmail.cf
Aliases     = /usr/lib/aliases

In the Makefile:

INSTALL  = /etc/install

Under the install: entry, the IRIX install uses -u instead of -o and the
directory is specified with the -f option which must precede the filename.

 install: listserv queue deliver rc.tulp tulp.5 tulp.8
      -mkdir $(INSTDIR); chmod 755 $(INSTDIR)
      chown $(USER) $(INSTDIR); chgrp $(GROUP) $(INSTDIR)
      $(INSTALL) -g $(GROUP) -u $(USER) -m 711 -f $(INSTDIR) listserv
      $(INSTALL) -g $(GROUP) -u $(USER) -m 4711 -f $(INSTDIR) queue
      $(INSTALL) -g $(GROUP) -u $(USER) -m 755 -f $(INSTDIR) deliver.pl
      $(INSTALL) -g $(GROUP) -u $(USER) -m 755 -f $(INSTDIR) deliver
      $(INSTALL) -g $(GROUP) -u $(USER) -m 755 -f $(INSTDIR) rc.tulp
      $(INSTALL) -g bin -u bin -m 444 -f $(MAN5) tulp.5
      $(INSTALL) -g bin -u bin -m 444 -f $(MAN8) tulp.8

