dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / tip / aculib / Makefile
blob02ed645ec389ad891ebc25d03e937e9277a749f8
2 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3 # Use is subject to license terms.
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.
10 # make file for tip device drivers
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
21 # cmd/tip/aculib/Makefile
23 ACULIB= aculib.a
24 OBJS= biz22.o biz31.o df.o dn11.o hayes.o ventel.o v831.o v3451.o
26 include ../../Makefile.cmd
28 CPPFLAGS= -I../ -DUSG $(CPPFLAGS.master)
29 CERRWARN += -Wno-clobbered
30 CERRWARN += -Wno-parentheses
32 .KEEP_STATE:
34 .PARALLEL: $(OBJS)
36 all: $(ACULIB)
38 $(ACULIB): $(OBJS)
39 $(AR) cr $(ACULIB) $(OBJS)
41 clean:
42 $(RM) $(ACULIB) $(OBJS)