home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / SOURCES / HGREP / RTR / HGREP. next >
Text File  |  1998-07-24  |  492b  |  24 lines

  1. *** Makefile.orig    Thu Oct 22 13:46:31 1992
  2. --- Makefile    Thu Oct 22 13:49:08 1992
  3. ***************
  4. *** 1,5 ****
  5. --- 1,8 ----
  6.   # Makefile for hgrep
  7.   
  8. + BINDIR = <installdir>/bin
  9. + MANDIR = <installsharedir>/man/man1
  10.   all:        hgrep hgrep.cat
  11.   
  12.   hgrep:        hgrep.c
  13. ***************
  14. *** 15,17 ****
  15. --- 18,24 ----
  16.   
  17.   hgrep.shar:    README Makefile hgrep.c hgrep.1
  18.       shar -v -c -p X README Makefile hgrep.c hgrep.1 > hgrep.shar
  19. + install:
  20. +     install hgrep $(BINDIR)
  21. +     install hgrep.1 $(MANDIR)
  22.