home *** CD-ROM | disk | FTP | other *** search
- --- Makefile.orig Mon Feb 3 10:00:16 1997
- +++ Makefile Mon Feb 3 10:01:28 1997
- @@ -1,5 +1,6 @@
- -CC= /bin/cc
- -DEST= /usr/local/sto/pstext
- +CC= cc
- +DEST= <installdir>/bin
- +MAN= <installsharedir>/man/man1
- PSTEXT_SRC= pstext.c
- PSTEXT_OBJ= pstext.o
-
- @@ -10,6 +11,7 @@
- $(CC) -o pstext $(PSTEXT_OBJ)
-
- install:
- - install -c -m755 -o bin -g bin pstext $(DEST)
- + install -c -m755 pstext $(DEST)
- + install -c pstext.1 $(MAN)
- clean:
- rm -f $(PSTEXT_OBJ) pstext a.out core
- --- pstext.c.orig Mon Feb 3 10:00:17 1997
- +++ pstext.c Mon Feb 3 10:00:18 1997
- @@ -193,7 +193,7 @@
- getfile(fpin,fpout)
- FILE *fpin,*fpout;
- {
- - char ch;
- + int ch;
-
- fprintf(fpout,"(");
- while ((ch=getc(fpin))!=EOF) {
-