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