home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sources / misc / 4053 next >
Encoding:
Text File  |  1992-11-05  |  2.1 KB  |  84 lines

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