Home | History | Annotate | Line # | Download | only in tip
Makefile revision 1.19
      1 #	$NetBSD: Makefile,v 1.19 2006/04/03 02:06:44 tls Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      3 #
      4 # Files are:
      5 #	/etc/remote		remote host description file
      6 #	/etc/phones		phone number file, owned by ${OWNER} and
      7 #				mode 6??
      8 #	/var/log/aculog		ACU accounting file, owned by ${OWNER} and
      9 #				mode 6?? {if ACULOG defined}
     10 # Presently supports:
     11 #	BIZCOMP
     12 #	DEC DF02-AC, DF03-AC
     13 #	DEC DN-11/Able Quadracall
     14 #	HAYES and Hayes emulators
     15 #	USR COURIER (2400 baud)
     16 #	VENTEL 212+
     17 #	VADIC 831 RS232 adaptor
     18 #	VADIC 3451
     19 #	TELEBIT T3000
     20 #
     21 # Configuration defines:
     22 #	DF02, DF03, DN11	ACU's supported
     23 #	  BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
     24 #	ACULOG			turn on tip logging of ACU use
     25 #	PRISTINE		no phone #'s put in ACU log file
     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 
     32 WARNS=4
     33 PROG=	tip
     34 CPPFLAGS+=-I${.CURDIR} \
     35 	-DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \
     36 	#-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000 -DACULOG -DPRISTINE
     37 .PATH:	${.CURDIR}/aculib
     38 SRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \
     39 	remote.c tip.c tipout.c value.c vars.c \
     40 	df.c hayes.c # log.c biz22.c courier.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, cu.o, acu.o, tip.o depend on the Makefile because of ACULOG
     45 acutab.o log.o cu.o acu.o tip.o remote.o: Makefile
     46 
     47 .include <bsd.prog.mk>
     48