118634Smiriam# 2*35463Sbostic# Copyright (c) 1988 The Regents of the University of California. 3*35463Sbostic# All rights reserved. 422413Sdist# 5*35463Sbostic# Redistribution and use in source and binary forms are permitted 6*35463Sbostic# provided that the above copyright notice and this paragraph are 7*35463Sbostic# duplicated in all such forms and that any documentation, 8*35463Sbostic# advertising materials, and other materials related to such 9*35463Sbostic# distribution and use acknowledge that the software was developed 10*35463Sbostic# by the University of California, Berkeley. The name of the 11*35463Sbostic# University may not be used to endorse or promote products derived 12*35463Sbostic# from this software without specific prior written permission. 13*35463Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*35463Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*35463Sbostic# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1622413Sdist# 17*35463Sbostic# @(#)Makefile 5.4 (Berkeley) 09/02/88 18*35463Sbostic# 1918634Smiriam# make file for tip device drivers 2018634Smiriam# 2118634Smiriam# Current drivers: 2218634Smiriam# BIZCOMP 2326999Sdonn# USR COURIER (2400 baud) 2418634Smiriam# DEC DF02-AC, DF03-AC 2518634Smiriam# DEC DN-11/Able Quadracall 2626999Sdonn# HAYES and Hayes emulators 2718634Smiriam# VENTEL 212+ (w/o echo) 2818634Smiriam# VADIC 831 RS232 adaptor 2918634Smiriam# VADIC 3451 30*35463Sbostic 3131579SbosticCFLAGS= -O -I.. 3231579SbosticLIBC= /lib/libc.a 3331579SbosticSRCS= biz22.c biz31.c courier.c df.c dn11.c hayes.c ventel.c v831.c v3451.c 3426999SdonnOBJS= biz22.o biz31.o courier.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 35*35463SbosticMAN= 3618634Smiriam 3731579Sbosticall: aculib.a 3831579Sbostic 3918634Smiriamaculib.a: ${OBJS} 4031579Sbostic ar cu aculib.a ${OBJS} 4118634Smiriam ranlib aculib.a 4218634Smiriam 43*35463Sbosticclean: 4431579Sbostic rm -f ${OBJS} core aculib.a 4518634Smiriam 46*35463Sbosticcleandir: clean 47*35463Sbostic rm -f ${MAN} tags .depend 48*35463Sbostic 49*35463Sbosticdepend: 5031579Sbostic mkdep ${CFLAGS} ${SRCS} 5131579Sbostic 52*35463Sbosticinstall: 53*35463Sbostic 54*35463Sbosticlint: 5531579Sbostic lint ${CFLAGS} ${SRCS} 5631579Sbostic 57*35463Sbostictags: 5831579Sbostic ctags ${SRCS} 5931579Sbostic 60