home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / utility / which5 / makefile next >
Encoding:
Makefile  |  1993-10-22  |  332 b   |  16 lines

  1. # Makefile for /usr/local/bin/which
  2.  
  3. CC        = gcc -v -z -Wall -Ig:/gnu/gcc/include -Lg:/gnu/gcc/lib
  4. LIBS        = -liio
  5.  
  6. which.ttp:    which5.c
  7.         $(CC) -O which5.c -o which.ttp $(LIBS)
  8.         fixstk 8K which.ttp
  9.         xstrip which.ttp
  10.  
  11. install:    which.ttp
  12.         /bin/mv -f which.ttp e:/local/bin
  13.  
  14. doc:
  15.         nroff -manx -T -rO1 which.man >which.1
  16.