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

  1. *** Makefile.orig    Tue Dec  8 09:38:09 1992
  2. --- Makefile    Tue Dec  8 09:49:04 1992
  3. ***************
  4. *** 1,7 ****
  5.   # makefile for stat
  6.   #            by Kevin S Braunsdorf, PUCC
  7.   
  8. ! BIN=    ${DESTDIR}/usr/unsup/bin
  9.   
  10.   I=/usr/include
  11.   S=/usr/include/sys
  12. --- 1,8 ----
  13.   # makefile for stat
  14.   #            by Kevin S Braunsdorf, PUCC
  15.   
  16. ! BIN=    <installdir>/bin
  17. ! MAN=    <installsharedir>/man/man1
  18.   
  19.   I=/usr/include
  20.   S=/usr/include/sys
  21. ***************
  22. *** 28,34 ****
  23.       maketd -a ${CDEFS} ${INCLUDE} -b stat.c
  24.   
  25.   install: all FRC
  26. !     install -c -s -m 751 -o binary -g system stat ${BIN}
  27.   
  28.   lint: ${HDR} ${SRC} FRC
  29.       lint -hnx ${CDEFS} ${INCLUDE} ${SRC}
  30. --- 29,36 ----
  31.       maketd -a ${CDEFS} ${INCLUDE} -b stat.c
  32.   
  33.   install: all FRC
  34. !     install -c -s -m 751 stat ${BIN}
  35. !     install -c stat.1 ${MAN}
  36.   
  37.   lint: ${HDR} ${SRC} FRC
  38.       lint -hnx ${CDEFS} ${INCLUDE} ${SRC}
  39.