Makefile revision 1.24 1 1.24 dyoung # $NetBSD: Makefile,v 1.24 2006/04/04 15:09:50 dyoung Exp $
2 1.4 jtc # @(#)Makefile 8.1 (Berkeley) 6/6/93
3 1.1 cgd #
4 1.1 cgd # Files are:
5 1.1 cgd # /etc/remote remote host description file
6 1.1 cgd # /etc/phones phone number file, owned by ${OWNER} and
7 1.1 cgd # mode 6??
8 1.1 cgd # Presently supports:
9 1.1 cgd # BIZCOMP
10 1.1 cgd # DEC DF02-AC, DF03-AC
11 1.1 cgd # DEC DN-11/Able Quadracall
12 1.1 cgd # HAYES and Hayes emulators
13 1.1 cgd # USR COURIER (2400 baud)
14 1.1 cgd # VENTEL 212+
15 1.1 cgd # VADIC 831 RS232 adaptor
16 1.1 cgd # VADIC 3451
17 1.4 jtc # TELEBIT T3000
18 1.1 cgd #
19 1.1 cgd # Configuration defines:
20 1.1 cgd # DF02, DF03, DN11 ACU's supported
21 1.4 jtc # BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
22 1.1 cgd # DEFBR default baud rate to make connection at
23 1.1 cgd # DEFFS default frame size for FTP buffering of
24 1.1 cgd # writes on local side
25 1.1 cgd # BUFSIZ buffer sizing from stdio, must be fed
26 1.1 cgd # explicitly to remcap.c if not 1024
27 1.1 cgd
28 1.13 christos WARNS=4
29 1.1 cgd PROG= tip
30 1.24 dyoung .if defined(MKUUCP) && ${MKUUCP} != no
31 1.23 yamt LINKS= ${BINDIR}/tip ${BINDIR}/cu
32 1.20 tls MLINKS= tip.1 cu.1
33 1.24 dyoung .endif
34 1.11 lukem CPPFLAGS+=-I${.CURDIR} \
35 1.19 tls -DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \
36 1.21 perry #-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
37 1.7 gwr .PATH: ${.CURDIR}/aculib
38 1.22 perry
39 1.22 perry # Dialers we can choose from:
40 1.22 perry # biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
41 1.22 perry DIALSRCS = hayes.c
42 1.22 perry
43 1.17 tls SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \
44 1.22 perry remote.c tip.c tipout.c value.c vars.c ${DIALSRCS}
45 1.1 cgd
46 1.1 cgd # -- acutab is configuration dependent, and so depends on the Makefile
47 1.1 cgd # -- remote.o depends on the Makefile because of DEFBR and DEFFS
48 1.21 perry acutab.o remote.o: Makefile
49 1.1 cgd
50 1.1 cgd .include <bsd.prog.mk>
51