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