home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / SOURCES / WHICH / I386 / WHICH. < prev   
Encoding:
Text File  |  1998-07-24  |  1002 b   |  33 lines

  1. *** Makefile.orig    Fri Oct 30 05:58:04 1992
  2. --- Makefile    Wed Dec  9 11:19:10 1992
  3. ***************
  4. *** 1,15 ****
  5.   # Makefile for <installdir>/bin/which
  6.   # If your operating system does not support multiple groups (see getgroups(2)
  7.   # on BSD-derivatives), comment out the next line.
  8. ! MULTIPLE_GROUPS=-DMULTIPLE_GROUPS
  9.   
  10.   which:        which6.c
  11.           cc -O $(MULTIPLE_GROUPS) -o which which6.c
  12.   
  13. ! install:    which doc
  14.           /bin/mv -f which <installdir>/bin
  15. -         /bin/mv -f which.man <installsharedir>/man/cat1/which.1
  16.           /bin/cp which.1 <installsharedir>/man/man1
  17.   
  18. - doc:
  19. -         nroff -man which.1 > which.man
  20. --- 1,12 ----
  21.   # Makefile for <installdir>/bin/which
  22.   # If your operating system does not support multiple groups (see getgroups(2)
  23.   # on BSD-derivatives), comment out the next line.
  24. ! #MULTIPLE_GROUPS=-DMULTIPLE_GROUPS
  25.   
  26.   which:        which6.c
  27.           cc -O $(MULTIPLE_GROUPS) -o which which6.c
  28.   
  29. ! install:    which
  30.           /bin/mv -f which <installdir>/bin
  31.           /bin/cp which.1 <installsharedir>/man/man1
  32.   
  33.