home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume33 / tarml23 / patch01 < prev    next >
Encoding:
Text File  |  1992-11-10  |  1.9 KB  |  78 lines

  1. Newsgroups: comp.sources.misc
  2. From: lew@gsg.gsg.com (Paul Lew)
  3. Subject:  v33i048:  tarmail-2.3 - mail files with CRC checking, Patch01
  4. Message-ID: <1992Nov5.191619.14916@sparky.imd.sterling.com>
  5. X-Md4-Signature: 89295cce2d268ff14708479a9e30ea25
  6. Date: Thu, 5 Nov 1992 19:16:19 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: lew@gsg.gsg.com (Paul Lew)
  10. Posting-number: Volume 33, Issue 48
  11. Archive-name: tarmail-2.3/patch01
  12. Environment: BSD, SUNOS
  13. Patch-To: tarmail-2.3: Volume 33, Issue 36
  14.  
  15. The Makfile was omitted in the tarmail-2.3 just posted on the
  16. comp.sources.misc.  It is enclosed in the following patch:
  17.  
  18. *** patchlevel.h.old    Wed Oct 21 15:47:32 1992
  19. --- patchlevel.h    Thu Nov  5 12:11:53 1992
  20. ***************
  21. *** 1,3 ****
  22. ! #define    VERSION    "2.3"
  23. ! #define    DATE    "10/21/92  03:47 PM"
  24.   
  25. --- 1,3 ----
  26. ! #define    VERSION    "2.3-p01"
  27. ! #define    DATE    "11/05/92  12:11 PM"
  28.   
  29. *** /dev/null    Thu Nov  5 12:10:17 1992
  30. --- Makefile    Thu Nov  5 09:28:12 1992
  31. ***************
  32. *** 0 ****
  33. --- 1,41 ----
  34. + # Version: 2.3   Last update: 11/05/92  10:28 AM  (Edition: 4)
  35. + CC    = cc
  36. + CFLAGS    = -O -s
  37. + BIN    = /usr/local/bin
  38. + MAN    = /usr/man/manl
  39. + L    = l
  40. + SCRIPT    = tarmail untarmail show_help
  41. + SRC    = atob.c btoa.c chunk.c $(SCRIPT)
  42. + MANPAGE    = tarmail.man chunk.man
  43. + MISC    = README patchlevel.h Makefile
  44. + OBJ    = atob.o btoa.o chunk.o
  45. + EXE    = atob btoa chunk
  46. + TARGET    = $(EXE) $(SCRIPT)
  47. + all:        $(TARGET)
  48. + install:    $(TARGET)
  49. +         mv $(EXE) $(BIN)
  50. +         chmod a+x $(SCRIPT)
  51. +         cp $(SCRIPT) $(BIN)
  52. +         make clean
  53. + man:        $(MANPAGE)
  54. +         cd $(MAN); rm -f btoa.$(L) tarmail.$(L) chunk.$(L)
  55. +         cp tarmail.man $(MAN)/tarmail.$(L)
  56. +         cp tarmail.man $(MAN)/btoa.$(L)
  57. +         cp chunk.man $(MAN)/chunk.$(L)
  58. +         echo Now, run catman.
  59. + name:        ; @echo $(MISC) $(SRC) $(MANPAGE)
  60. + shar:        ; @shar $(MISC) $(SRC) $(MANPAGE) > tarmail.shar
  61. + .c.o:        ; $(CC) $(CFLAGS) -o $* $*.c
  62. + atob:        atob.o
  63. + btoa:        btoa.o
  64. + chunk:        chunk.o
  65. + clean:
  66. +         rm -f *.o $(EXE) $(OBJ)
  67.  
  68.  
  69. exit 0 # Just in case...
  70.