xref: /titanic_41/usr/src/uts/sun/Makefile.rules (revision 9113a79cf228b8f7bd509b1328adf88659dfe218)
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 2007 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)/%.o:		$(UTSBASE)/sun/io/dada/targets/%.c
72	$(COMPILE.c) -o $@ $<
73	$(CTFCONVERT_O)
74
75$(OBJS_DIR)/esp.o	:=	CFLAGS += -dalign
76$(OBJS_DIR)/fas.o	:=	CFLAGS += -dalign
77$(OBJS_DIR)/fas_callbacks.o :=	CFLAGS += -dalign
78$(OBJS_DIR)/sf.o	:=	CFLAGS += -dalign
79$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/adapters/%.c
80	$(COMPILE.c) -o $@ $<
81	$(CTFCONVERT_O)
82
83$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/targets/%.c
84	$(COMPILE.c) -I. -o $@ $<
85	$(CTFCONVERT_O)
86
87$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/scsi/adapters/%.c
88	$(COMPILE.c) -o $@ $<
89	$(CTFCONVERT_O)
90
91#
92#	Section 1b: Lint `object' build rules
93#
94$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/%.c
95	@($(LHEAD) $(LINT.c) $< $(LTAIL))
96
97$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c
98	@($(LHEAD) $(LINT.c) $< $(LTAIL))
99
100$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audio1575/%.c
101	@($(LHEAD) $(LINT.c) $< $(LTAIL))
102
103$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/adapters/%.c
104	@($(LHEAD) $(LINT.c) $< $(LTAIL))
105
106$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/targets/%.c
107	@($(LHEAD) $(LINT.c) -I. $< $(LTAIL))
108
109$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/impl/%.c
110	@($(LHEAD) $(LINT.c) $< $(LTAIL))
111
112$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/conf/%.c
113	@($(LHEAD) $(LINT.c) $< $(LTAIL))
114
115$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/targets/%.c
116	@($(LHEAD) $(LINT.c) $< $(LTAIL))
117
118$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/scsi/adapters/%.c
119	@($(LHEAD) $(LINT.c) $< $(LTAIL))
120
121$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/ttymux/%.c
122	@($(LHEAD) $(LINT.c) $< $(LTAIL))
123