home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume2 / help / Makefile < prev    next >
Makefile  |  1991-08-07  |  919b  |  49 lines

  1. #
  2. # Makefile for Help command
  3. #
  4. #    By:        $Author: plocher $  (John Plocher)
  5. #            $Revision: 1.0 $
  6. #    Last modified:    $Date: 87/12/26 23:34:30 $
  7. #    Source is in:    $Source: /u/microport/src/help/RCS/Makefile,v $
  8. #
  9. #    Release state:    $State: Posted $
  10. #
  11. # Modification Log
  12. # ----------------
  13. #
  14. # $Log:    Makefile,v $
  15. # Revision 1.0  87/12/26  23:34:30  plocher
  16. # Initial revision
  17. #
  18. #    $Header: Makefile,v 1.0 87/12/26 23:34:30 plocher Posted $
  19. #
  20.  
  21. SHELL=/bin/sh
  22.  
  23. # Where you put your local binaries...
  24. LOCAL= /usr/local
  25. HELPDIR= /usr/lib
  26.  
  27. all:    help
  28.  
  29. help:    help.o
  30.     cc -o help help.o
  31.  
  32. install: all
  33.     chown root help
  34.     chmod 755 help
  35.     chmod u+s help
  36.     if [ -f /usr/bin/help ] ; then  mv /usr/bin/help /usr/bin/help.SV ; fi
  37.     rm -f $(LOCAL)/help
  38.     cp help $(LOCAL)
  39.     chown root helpfile
  40.     chmod 644 helpfile
  41.     install -c $(HELPDIR) helpfile
  42.  
  43. uninstall:
  44.     rm -f $(LOCAL)/help $(HELPDIR)/helpfile $(HELPDIR)/helpfile.idx
  45.  
  46. clean:
  47.     rm -f help.o help
  48.