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

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

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