xref: /original-bsd/usr.bin/tip/aculib/Makefile (revision 5f69ff4a)
1#
2# Copyright (c) 1988 The Regents of the University of California.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms are permitted
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation,
8# advertising materials, and other materials related to such
9# distribution and use acknowledge that the software was developed
10# by the University of California, Berkeley.  The name of the
11# University may not be used to endorse or promote products derived
12# from this software without specific prior written permission.
13# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16#
17#	@(#)Makefile	5.4 (Berkeley) 09/02/88
18#
19# make file for tip device drivers
20#
21# Current drivers:
22#	BIZCOMP
23#	USR COURIER (2400 baud)
24#	DEC DF02-AC, DF03-AC
25#	DEC DN-11/Able Quadracall
26#	HAYES and Hayes emulators
27#	VENTEL 212+ (w/o echo)
28#	VADIC 831 RS232 adaptor
29#	VADIC 3451
30
31CFLAGS=	-O -I..
32LIBC=	/lib/libc.a
33SRCS=	biz22.c biz31.c courier.c df.c dn11.c hayes.c ventel.c v831.c v3451.c
34OBJS=	biz22.o biz31.o courier.o df.o dn11.o hayes.o ventel.o v831.o v3451.o
35MAN=
36
37all: aculib.a
38
39aculib.a: ${OBJS}
40	ar cu aculib.a ${OBJS}
41	ranlib aculib.a
42
43clean:
44	rm -f ${OBJS} core aculib.a
45
46cleandir: clean
47	rm -f ${MAN} tags .depend
48
49depend:
50	mkdep ${CFLAGS} ${SRCS}
51
52install:
53
54lint:
55	lint ${CFLAGS} ${SRCS}
56
57tags:
58	ctags ${SRCS}
59
60