[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / tip

Annotation of src/usr.bin/tip/Makefile, Revision 1.4

1.4     ! millert     1: #      $OpenBSD: Makefile,v 1.3 1996/07/26 20:35:31 dm Exp $
        !             2: #      $NetBSD: Makefile,v 1.5 1996/12/29 10:36:37 cgd Exp $
        !             3: #      @(#)Makefile    8.1 (Berkeley) 6/6/93
1.1       deraadt     4: #
                      5: # Files are:
                      6: #      /etc/remote             remote host description file
                      7: #      /etc/phones             phone number file, owned by ${OWNER} and
                      8: #                              mode 6??
                      9: #      /var/log/aculog         ACU accounting file, owned by ${OWNER} and
                     10: #                              mode 6?? {if ACULOG defined}
                     11: # Presently supports:
                     12: #      BIZCOMP
                     13: #      DEC DF02-AC, DF03-AC
                     14: #      DEC DN-11/Able Quadracall
                     15: #      HAYES and Hayes emulators
                     16: #      USR COURIER (2400 baud)
                     17: #      VENTEL 212+
                     18: #      VADIC 831 RS232 adaptor
                     19: #      VADIC 3451
                     20: #      TELEBIT T3000
                     21: #
                     22: # Configuration defines:
                     23: #      DF02, DF03, DN11        ACU's supported
                     24: #        BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
                     25: #      ACULOG                  turn on tip logging of ACU use
                     26: #      PRISTINE                no phone #'s put in ACU log file
                     27: #      CONNECT                 worthless command
                     28: #      DEFBR                   default baud rate to make connection at
                     29: #      DEFFS                   default frame size for FTP buffering of
                     30: #                              writes on local side
                     31: #      BUFSIZ                  buffer sizing from stdio, must be fed
                     32: #                              explicitly to remcap.c if not 1024
                     33: #      CONNECT                 enable ~C command (connect pgm to remote)
                     34:
                     35: PROG=  tip
1.4     ! millert    36: CFLAGS+=-I${.CURDIR} -ansi -pedantic \
1.1       deraadt    37:        -DDEFBR=1200 -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT \
                     38:        -DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
                     39: .PATH: ${.CURDIR}/aculib
                     40: BINOWN=        uucp
                     41: BINGRP=        dialer
1.4     ! millert    42: BINMODE=4510
1.1       deraadt    43: SRCS=  acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
                     44:        remote.c tip.c tipout.c uucplock.c value.c vars.c \
                     45:        biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
                     46:
                     47: # -- acutab is configuration dependent, and so depends on the Makefile
                     48: # -- remote.o depends on the Makefile because of DEFBR and DEFFS
                     49: # -- log.o depends on the Makefile because of ACULOG
                     50: acutab.o log.o remote.o: Makefile
                     51:
                     52: .include <bsd.prog.mk>