17c478bd9Sstevel@tonic-gate# 2*a5f69788Scraigm# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 37c478bd9Sstevel@tonic-gate# Use is subject to license terms. 47c478bd9Sstevel@tonic-gate# 57c478bd9Sstevel@tonic-gate# Copyright (c) 1983 Regents of the University of California. 67c478bd9Sstevel@tonic-gate# All rights reserved. The Berkeley software License Agreement 77c478bd9Sstevel@tonic-gate# specifies the terms and conditions for redistribution. 87c478bd9Sstevel@tonic-gate# 97c478bd9Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 107c478bd9Sstevel@tonic-gate# 117c478bd9Sstevel@tonic-gate# make file for tip device drivers 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# Current drivers: 147c478bd9Sstevel@tonic-gate# BIZCOMP 157c478bd9Sstevel@tonic-gate# DEC DF02-AC, DF03-AC 167c478bd9Sstevel@tonic-gate# DEC DN-11/Able Quadracall 177c478bd9Sstevel@tonic-gate# VENTEL 212+ (w/o echo) 187c478bd9Sstevel@tonic-gate# VADIC 831 RS232 adaptor 197c478bd9Sstevel@tonic-gate# VADIC 3451 207c478bd9Sstevel@tonic-gate# HAYES SmartModem 217c478bd9Sstevel@tonic-gate# 227c478bd9Sstevel@tonic-gate# cmd/tip/aculib/Makefile 237c478bd9Sstevel@tonic-gate 247c478bd9Sstevel@tonic-gateACULIB= aculib.a 257c478bd9Sstevel@tonic-gateOBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 287c478bd9Sstevel@tonic-gate 298d489c7aSmuffinLINTFLAGS += -u 307c478bd9Sstevel@tonic-gateCPPFLAGS= -I../ -DUSG $(CPPFLAGS.master) 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gate.KEEP_STATE: 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate.PARALLEL: $(OBJS) 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gateall: $(ACULIB) 377c478bd9Sstevel@tonic-gate 387c478bd9Sstevel@tonic-gate$(ACULIB): $(OBJS) 397c478bd9Sstevel@tonic-gate $(AR) cr $(ACULIB) $(OBJS) 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gateclean: 427c478bd9Sstevel@tonic-gate $(RM) $(ACULIB) $(OBJS) core errs 438d489c7aSmuffin 448d489c7aSmuffinlint: 45*a5f69788Scraigm $(LINT.c) $(OBJS:%.o=%.c) $(LDLIBS) 46