home *** CD-ROM | disk | FTP | other *** search
- *** Makefile.orig Mon Nov 16 14:42:17 1992
- --- Makefile Mon Nov 16 14:55:10 1992
- ***************
- *** 1,3 ****
- --- 1,7 ----
- + BINDIR = <installdir>/bin
- +
- + MANDIR = <installsharedir>/man/man1
- +
- CC = cc
- CFLAGS = -O
- TPIPE = tpipe
- ***************
- *** 5,7 ****
- --- 9,16 ----
-
- $(TPIPE): $(CFILES)
- $(CC) $(CFLAGS) $(CFILES) -o $@
- +
- + install:
- + install -s tpipe $(BINDIR)
- + install tpipe.1 $(MANDIR)
- +
-