10Sstevel@tonic-gate# 2*1846Scraigm# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 30Sstevel@tonic-gate# Use is subject to license terms. 40Sstevel@tonic-gate# 50Sstevel@tonic-gate# Copyright (c) 1983 Regents of the University of California. 60Sstevel@tonic-gate# All rights reserved. The Berkeley software License Agreement 70Sstevel@tonic-gate# specifies the terms and conditions for redistribution. 80Sstevel@tonic-gate# 90Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 100Sstevel@tonic-gate# 110Sstevel@tonic-gate# make file for tip device drivers 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# Current drivers: 140Sstevel@tonic-gate# BIZCOMP 150Sstevel@tonic-gate# DEC DF02-AC, DF03-AC 160Sstevel@tonic-gate# DEC DN-11/Able Quadracall 170Sstevel@tonic-gate# VENTEL 212+ (w/o echo) 180Sstevel@tonic-gate# VADIC 831 RS232 adaptor 190Sstevel@tonic-gate# VADIC 3451 200Sstevel@tonic-gate# HAYES SmartModem 210Sstevel@tonic-gate# 220Sstevel@tonic-gate# cmd/tip/aculib/Makefile 230Sstevel@tonic-gate 240Sstevel@tonic-gateACULIB= aculib.a 250Sstevel@tonic-gateOBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 260Sstevel@tonic-gate 270Sstevel@tonic-gateinclude ../../Makefile.cmd 280Sstevel@tonic-gate 29549SmuffinLINTFLAGS += -u 300Sstevel@tonic-gateCPPFLAGS= -I../ -DUSG $(CPPFLAGS.master) 310Sstevel@tonic-gate 320Sstevel@tonic-gate.KEEP_STATE: 330Sstevel@tonic-gate 340Sstevel@tonic-gate.PARALLEL: $(OBJS) 350Sstevel@tonic-gate 360Sstevel@tonic-gateall: $(ACULIB) 370Sstevel@tonic-gate 380Sstevel@tonic-gate$(ACULIB): $(OBJS) 390Sstevel@tonic-gate $(AR) cr $(ACULIB) $(OBJS) 400Sstevel@tonic-gate 410Sstevel@tonic-gateclean: 420Sstevel@tonic-gate $(RM) $(ACULIB) $(OBJS) core errs 43549Smuffin 44549Smuffinlint: 45*1846Scraigm $(LINT.c) $(OBJS:%.o=%.c) $(LDLIBS) 46