xref: /titanic_52/usr/src/cmd/tip/aculib/Makefile (revision b1dd958f54f8bfa984d306bb8ca8264855761d7b)
1#
2# Copyright 2005 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
29CPPFLAGS=	-I../ -DUSG $(CPPFLAGS.master)
30
31.KEEP_STATE:
32
33.PARALLEL: $(OBJS)
34
35all:	$(ACULIB)
36
37$(ACULIB): $(OBJS)
38	$(AR) cr $(ACULIB) $(OBJS)
39
40clean:
41	$(RM) $(ACULIB) $(OBJS) core errs
42