1# 2# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3# Use is subject to license terms. 4# 5# Copyright (c) 1983 Regents of the University of California. 6# All rights reserved. The Berkeley software License Agreement 7# specifies the terms and conditions for redistribution. 8# 9# ident "%Z%%M% %I% %E% SMI" 10# 11# make file for tip device drivers 12# 13# Current drivers: 14# BIZCOMP 15# DEC DF02-AC, DF03-AC 16# DEC DN-11/Able Quadracall 17# VENTEL 212+ (w/o echo) 18# VADIC 831 RS232 adaptor 19# VADIC 3451 20# HAYES SmartModem 21# 22# cmd/tip/aculib/Makefile 23 24ACULIB= aculib.a 25OBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 26 27include ../../Makefile.cmd 28 29LINTFLAGS += -u 30CPPFLAGS= -I../ -DUSG $(CPPFLAGS.master) 31 32.KEEP_STATE: 33 34.PARALLEL: $(OBJS) 35 36all: $(ACULIB) 37 38$(ACULIB): $(OBJS) 39 $(AR) cr $(ACULIB) $(OBJS) 40 41clean: 42 $(RM) $(ACULIB) $(OBJS) core errs 43 44lint: 45 $(LINT.c) $(OBJS:%.o=%.c) $(LDLIBS) 46