xref: /titanic_41/usr/src/uts/sun/Makefile.rules (revision 8b464eb836173b92f2b7a65623cd06c8c3c59289)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28# uts/sun/Makefile.rules
29#
30#	This Makefile defines all build rules for the directory uts/sun and
31# its children. These are the source files which are common to all sun
32# implementations.
33#
34#	The following two-level ordering must be maintained in this file.
35#	  Lines are sorted first in order of decreasing specificity based on
36#	  the first directory component.  That is, sun4u rules come before
37#	  sparc rules come before common rules.
38#
39#	  Lines whose initial directory components are equal are sorted
40#	  alphabetically by the remaining components.
41
42#
43#	Section 1a: C object build rules
44#
45$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c
46	$(COMPILE.c) -o $@ $<
47	$(CTFCONVERT_O)
48
49$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/audio/sada/drv/audio1575/%.c
50	$(COMPILE.c) -o $@ $<
51	$(CTFCONVERT_O)
52
53$(OBJS_DIR)/eri.o	:=	CFLAGS += -dalign
54$(OBJS_DIR)/hme.o	:=	CFLAGS += -dalign
55$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/%.c
56	$(COMPILE.c) -o $@ $<
57	$(CTFCONVERT_O)
58
59$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/ttymux/%.c
60	$(COMPILE.c) -o $@ $<
61	$(CTFCONVERT_O)
62
63$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/dada/conf/%.c
64	$(COMPILE.c) -o $@ $<
65	$(CTFCONVERT_O)
66
67$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/dada/impl/%.c
68	$(COMPILE.c) -o $@ $<
69	$(CTFCONVERT_O)
70
71$(OBJS_DIR)/esp.o	:=	CFLAGS += -dalign
72$(OBJS_DIR)/fas.o	:=	CFLAGS += -dalign
73$(OBJS_DIR)/fas_callbacks.o :=	CFLAGS += -dalign
74$(OBJS_DIR)/sf.o	:=	CFLAGS += -dalign
75$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/adapters/%.c
76	$(COMPILE.c) -o $@ $<
77	$(CTFCONVERT_O)
78
79$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/targets/%.c
80	$(COMPILE.c) -I. -o $@ $<
81	$(CTFCONVERT_O)
82
83$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/scsi/adapters/%.c
84	$(COMPILE.c) -o $@ $<
85	$(CTFCONVERT_O)
86
87#
88#	Section 1b: Lint `object' build rules
89#
90$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/%.c
91	@($(LHEAD) $(LINT.c) $< $(LTAIL))
92
93$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c
94	@($(LHEAD) $(LINT.c) $< $(LTAIL))
95
96$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audio1575/%.c
97	@($(LHEAD) $(LINT.c) $< $(LTAIL))
98
99$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/adapters/%.c
100	@($(LHEAD) $(LINT.c) $< $(LTAIL))
101
102$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/targets/%.c
103	@($(LHEAD) $(LINT.c) -I. $< $(LTAIL))
104
105$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/impl/%.c
106	@($(LHEAD) $(LINT.c) $< $(LTAIL))
107
108$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/conf/%.c
109	@($(LHEAD) $(LINT.c) $< $(LTAIL))
110
111$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/scsi/adapters/%.c
112	@($(LHEAD) $(LINT.c) $< $(LTAIL))
113
114$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/ttymux/%.c
115	@($(LHEAD) $(LINT.c) $< $(LTAIL))
116