Home | History | Annotate | Line # | Download | only in tip
      1 #	$NetBSD: Makefile,v 1.28 2009/04/14 22:15:27 lukem 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 # Presently supports:
      9 #	BIZCOMP
     10 #	DEC DF02-AC, DF03-AC
     11 #	DEC DN-11/Able Quadracall
     12 #	HAYES and Hayes emulators
     13 #	USR COURIER (2400 baud)
     14 #	VENTEL 212+
     15 #	VADIC 831 RS232 adaptor
     16 #	VADIC 3451
     17 #	TELEBIT T3000
     18 #
     19 # Configuration defines:
     20 #	DF02, DF03, DN11	ACU's supported
     21 #	  BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
     22 #	DEFBR			default baud rate to make connection at
     23 #	DEFFS			default frame size for FTP buffering of
     24 #				writes on local side
     25 #	BUFSIZ			buffer sizing from stdio, must be fed
     26 #				explicitly to remcap.c if not 1024
     27 
     28 .include <bsd.own.mk>
     29 
     30 PROG=	tip
     31 LINKS=	${BINDIR}/tip ${BINDIR}/cu
     32 MLINKS=	tip.1 cu.1
     33 CPPFLAGS+=-I${.CURDIR} \
     34 	-DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \
     35 	#-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
     36 .PATH:	${.CURDIR}/aculib
     37 
     38 # Dialers we can choose from:
     39 # biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
     40 DIALSRCS = hayes.c
     41 
     42 SRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \
     43 	remote.c tip.c tipout.c value.c vars.c ${DIALSRCS}
     44 
     45 # -- acutab is configuration dependent, and so depends on the Makefile
     46 # -- remote.o depends on the Makefile because of DEFBR and DEFFS
     47 acutab.o remote.o: Makefile
     48 
     49 .include <bsd.prog.mk>
     50