home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sources.misc
- From: lew@gsg.gsg.com (Paul Lew)
- Subject: v33i048: tarmail-2.3 - mail files with CRC checking, Patch01
- Message-ID: <1992Nov5.191619.14916@sparky.imd.sterling.com>
- X-Md4-Signature: 89295cce2d268ff14708479a9e30ea25
- Date: Thu, 5 Nov 1992 19:16:19 GMT
- Approved: kent@sparky.imd.sterling.com
-
- Submitted-by: lew@gsg.gsg.com (Paul Lew)
- Posting-number: Volume 33, Issue 48
- Archive-name: tarmail-2.3/patch01
- Environment: BSD, SUNOS
- Patch-To: tarmail-2.3: Volume 33, Issue 36
-
- The Makfile was omitted in the tarmail-2.3 just posted on the
- comp.sources.misc. It is enclosed in the following patch:
-
- *** patchlevel.h.old Wed Oct 21 15:47:32 1992
- --- patchlevel.h Thu Nov 5 12:11:53 1992
- ***************
- *** 1,3 ****
- ! #define VERSION "2.3"
- ! #define DATE "10/21/92 03:47 PM"
-
- --- 1,3 ----
- ! #define VERSION "2.3-p01"
- ! #define DATE "11/05/92 12:11 PM"
-
- *** /dev/null Thu Nov 5 12:10:17 1992
- --- Makefile Thu Nov 5 09:28:12 1992
- ***************
- *** 0 ****
- --- 1,41 ----
- + # Version: 2.3 Last update: 11/05/92 10:28 AM (Edition: 4)
- + CC = cc
- + CFLAGS = -O -s
- + BIN = /usr/local/bin
- + MAN = /usr/man/manl
- + L = l
- + SCRIPT = tarmail untarmail show_help
- + SRC = atob.c btoa.c chunk.c $(SCRIPT)
- + MANPAGE = tarmail.man chunk.man
- + MISC = README patchlevel.h Makefile
- + OBJ = atob.o btoa.o chunk.o
- + EXE = atob btoa chunk
- + TARGET = $(EXE) $(SCRIPT)
- +
- + all: $(TARGET)
- +
- + install: $(TARGET)
- + mv $(EXE) $(BIN)
- + chmod a+x $(SCRIPT)
- + cp $(SCRIPT) $(BIN)
- + make clean
- +
- + man: $(MANPAGE)
- + cd $(MAN); rm -f btoa.$(L) tarmail.$(L) chunk.$(L)
- + cp tarmail.man $(MAN)/tarmail.$(L)
- + cp tarmail.man $(MAN)/btoa.$(L)
- + cp chunk.man $(MAN)/chunk.$(L)
- + echo Now, run catman.
- +
- + name: ; @echo $(MISC) $(SRC) $(MANPAGE)
- +
- + shar: ; @shar $(MISC) $(SRC) $(MANPAGE) > tarmail.shar
- +
- + .c.o: ; $(CC) $(CFLAGS) -o $* $*.c
- +
- + atob: atob.o
- + btoa: btoa.o
- + chunk: chunk.o
- +
- + clean:
- + rm -f *.o $(EXE) $(OBJ)
-
-
- exit 0 # Just in case...
-