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 10# make file for tip device drivers 11# 12# Current drivers: 13# BIZCOMP 14# DEC DF02-AC, DF03-AC 15# DEC DN-11/Able Quadracall 16# VENTEL 212+ (w/o echo) 17# VADIC 831 RS232 adaptor 18# VADIC 3451 19# HAYES SmartModem 20# 21# cmd/tip/aculib/Makefile 22 23ACULIB= aculib.a 24OBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o 25 26include ../../Makefile.cmd 27 28LINTFLAGS += -u 29CPPFLAGS= -I../ -DUSG $(CPPFLAGS.master) 30CERRWARN += -_gcc=-Wno-clobbered 31CERRWARN += -_gcc=-Wno-parentheses 32 33.KEEP_STATE: 34 35.PARALLEL: $(OBJS) 36 37all: $(ACULIB) 38 39$(ACULIB): $(OBJS) 40 $(AR) cr $(ACULIB) $(OBJS) 41 42clean: 43 $(RM) $(ACULIB) $(OBJS) 44 45lint: 46 $(LINT.c) $(OBJS:%.o=%.c) $(LDLIBS) 47