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

  1. *** Makefile.orig    Mon Nov  9 13:47:50 1992
  2. --- Makefile    Mon Nov  9 13:52:37 1992
  3. ***************
  4. *** 20,32 ****
  5.   
  6.   DESTDIR=
  7.   TARGETS=     delete undelete expunge purge lsdel
  8. ! INSTALLDIR=     /usr/bin
  9. ! MANDIR=        /usr/man
  10.   TMPDIR=        /tmp
  11.   MANSECT=    1
  12. ! CC=         cc
  13.   DEPEND=        /usr/bin/X11/makedepend
  14. ! COMPILE_ET=     compile_et
  15.   LINT=         lint
  16.   MALLOC=
  17.   DEFINES=    $(MALLOC)
  18. --- 20,32 ----
  19.   
  20.   DESTDIR=
  21.   TARGETS=     delete undelete expunge purge lsdel
  22. ! INSTALLDIR=     <installdir>/bin
  23. ! MANDIR=        <installsharedir>/man
  24.   TMPDIR=        /tmp
  25.   MANSECT=    1
  26. ! CC=         gcc
  27.   DEPEND=        /usr/bin/X11/makedepend
  28. ! COMPILE_ET=     ../com_err/compile_et
  29.   LINT=         lint
  30.   MALLOC=
  31.   DEFINES=    $(MALLOC)
  32. ***************
  33. *** 56,63 ****
  34.   # ETLDFLAGS is a -L flag pointing to the directory where the et
  35.   # library is stored.
  36.   # 
  37. ! # ETINCS=        
  38. ! # ETLDFLAGS=    
  39.   
  40.   
  41.   # You probably won't have to edit anything below this line.
  42. --- 56,63 ----
  43.   # ETLDFLAGS is a -L flag pointing to the directory where the et
  44.   # library is stored.
  45.   # 
  46. ! ETINCS=        -I../com_err/
  47. ! ETLDFLAGS=    -L../com_err/
  48.   
  49.   
  50.   # You probably won't have to edit anything below this line.
  51. ***************
  52. *** 165,171 ****
  53.       $(LINT) $(LINTFLAGS) $(EXPUNGESRC) $(LINTLIBS)
  54.   
  55.   purge: expunge
  56. !     ln -s expunge purge
  57.   
  58.   lsdel: $(LSDELOBJS)
  59.       $(CC) $(LDFLAGS) $(CFLAGS) -o lsdel $(LSDELOBJS) $(LIBS)
  60. --- 165,171 ----
  61.       $(LINT) $(LINTFLAGS) $(EXPUNGESRC) $(LINTLIBS)
  62.   
  63.   purge: expunge
  64. !     -ln -s expunge purge
  65.   
  66.   lsdel: $(LSDELOBJS)
  67.       $(CC) $(LDFLAGS) $(CFLAGS) -o lsdel $(LSDELOBJS) $(LIBS)
  68.