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

  1. *** Makefile.orig    Mon Nov 16 14:42:17 1992
  2. --- Makefile    Mon Nov 16 14:55:10 1992
  3. ***************
  4. *** 1,3 ****
  5. --- 1,7 ----
  6. + BINDIR = <installdir>/bin
  7. + MANDIR = <installsharedir>/man/man1
  8.   CC =        cc
  9.   CFLAGS =    -O
  10.   TPIPE =        tpipe
  11. ***************
  12. *** 5,7 ****
  13. --- 9,16 ----
  14.   
  15.   $(TPIPE): $(CFILES)
  16.       $(CC) $(CFLAGS) $(CFILES) -o $@
  17. + install:
  18. +     install -s tpipe $(BINDIR)
  19. +     install tpipe.1 $(MANDIR)
  20.