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