home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65 / src / Makefile < prev    next >
Encoding:
Makefile  |  1990-06-05  |  642 b   |  19 lines

  1. # a very simple makefile...
  2. # installation:
  3. #    install sendmail, owned by root, group kmem, mode 6555
  4. #    link sendmail to "newaliases" and "mailq"
  5. #    delete sendmail.fc, sendmail.st
  6. #    install sendmail.hf
  7. #    refreeze the configuration file
  8. #
  9. #    note, this installation is NOT complete... it assumes that
  10. #    sendmail is already running on the system and you know where
  11. #    everything goes.
  12. sendmail:
  13.     @echo 'make of sendmail and manual pages started.'
  14.     cc -DVMUNIX -I. *.c -ldbm
  15.     nroff -h -man aliases.5 > aliases.0
  16.     nroff -h -man newaliases.1 > newaliases.0
  17.     nroff -h -man sendmail.0 > sendmail.0
  18.     @echo 'make of sendmail and manual pages completed.'
  19.