17c478bd9Sstevel@tonic-gate# 2a5f69788Scraigm# 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# 97014882cSRichard Lowe 107c478bd9Sstevel@tonic-gate# make file for tip device drivers 117c478bd9Sstevel@tonic-gate# 127c478bd9Sstevel@tonic-gate# Current drivers: 137c478bd9Sstevel@tonic-gate# BIZCOMP 147c478bd9Sstevel@tonic-gate# DEC DF02-AC, DF03-AC 157c478bd9Sstevel@tonic-gate# DEC DN-11/Able Quadracall 167c478bd9Sstevel@tonic-gate# VENTEL 212+ (w/o echo) 177c478bd9Sstevel@tonic-gate# VADIC 831 RS232 adaptor 187c478bd9Sstevel@tonic-gate# VADIC 3451 197c478bd9Sstevel@tonic-gate# HAYES SmartModem 207c478bd9Sstevel@tonic-gate# 217c478bd9Sstevel@tonic-gate# cmd/tip/aculib/Makefile 227c478bd9Sstevel@tonic-gate 237c478bd9Sstevel@tonic-gateACULIB= aculib.a 247c478bd9Sstevel@tonic-gateOBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 277c478bd9Sstevel@tonic-gate 288d489c7aSmuffinLINTFLAGS += -u 297c478bd9Sstevel@tonic-gateCPPFLAGS= -I../ -DUSG $(CPPFLAGS.master) 307014882cSRichard LoweCERRWARN += -_gcc=-Wno-clobbered 317014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate.KEEP_STATE: 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate.PARALLEL: $(OBJS) 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gateall: $(ACULIB) 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate$(ACULIB): $(OBJS) 407c478bd9Sstevel@tonic-gate $(AR) cr $(ACULIB) $(OBJS) 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gateclean: 43*b6805bf7SGordon Ross $(RM) $(ACULIB) $(OBJS) 448d489c7aSmuffin 458d489c7aSmuffinlint: 46a5f69788Scraigm $(LINT.c) $(OBJS:%.o=%.c) $(LDLIBS) 47