xref: /titanic_41/usr/src/uts/sun/Makefile.rules (revision a18dc42fc967d11feba9b8be61c6727dc6c56b48)
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 2008 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
46$(OBJS_DIR)/hme.o	:=	CFLAGS += -dalign
47$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/%.c
48	$(COMPILE.c) -o $@ $<
49	$(CTFCONVERT_O)
50
51$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c
52	$(COMPILE.c) -o $@ $<
53	$(CTFCONVERT_O)
54
55$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/audio/sada/drv/audio1575/%.c
56	$(COMPILE.c) -o $@ $<
57	$(CTFCONVERT_O)
58
59$(OBJS_DIR)/eri.o	:=	CFLAGS += -dalign
60$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/eri/%.c
61	$(COMPILE.c) -o $@ $<
62	$(CTFCONVERT_O)
63
64$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/ttymux/%.c
65	$(COMPILE.c) -o $@ $<
66	$(CTFCONVERT_O)
67
68$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/dada/conf/%.c
69	$(COMPILE.c) -o $@ $<
70	$(CTFCONVERT_O)
71
72$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/dada/impl/%.c
73	$(COMPILE.c) -o $@ $<
74	$(CTFCONVERT_O)
75
76$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/dada/targets/%.c
77	$(COMPILE.c) -o $@ $<
78	$(CTFCONVERT_O)
79
80$(OBJS_DIR)/esp.o	:=	CFLAGS += -dalign
81$(OBJS_DIR)/fas.o	:=	CFLAGS += -dalign
82$(OBJS_DIR)/fas_callbacks.o :=	CFLAGS += -dalign
83$(OBJS_DIR)/sf.o	:=	CFLAGS += -dalign
84$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/adapters/%.c
85	$(COMPILE.c) -o $@ $<
86	$(CTFCONVERT_O)
87
88$(OBJS_DIR)/%.o:		$(UTSBASE)/sun/io/scsi/targets/%.c
89	$(COMPILE.c) -I. -o $@ $<
90	$(CTFCONVERT_O)
91
92$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/scsi/adapters/%.c
93	$(COMPILE.c) -o $@ $<
94	$(CTFCONVERT_O)
95
96#
97#	Section 1b: Lint `object' build rules
98#
99$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/%.c
100	@($(LHEAD) $(LINT.c) $< $(LTAIL))
101
102$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c
103	@($(LHEAD) $(LINT.c) $< $(LTAIL))
104
105$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/audio/sada/drv/audio1575/%.c
106	@($(LHEAD) $(LINT.c) $< $(LTAIL))
107
108$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/eri/%.c
109	@($(LHEAD) $(LINT.c) $< $(LTAIL))
110
111$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/adapters/%.c
112	@($(LHEAD) $(LINT.c) $< $(LTAIL))
113
114$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/scsi/targets/%.c
115	@($(LHEAD) $(LINT.c) -I. $< $(LTAIL))
116
117$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/impl/%.c
118	@($(LHEAD) $(LINT.c) $< $(LTAIL))
119
120$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/conf/%.c
121	@($(LHEAD) $(LINT.c) $< $(LTAIL))
122
123$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/dada/targets/%.c
124	@($(LHEAD) $(LINT.c) $< $(LTAIL))
125
126$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/scsi/adapters/%.c
127	@($(LHEAD) $(LINT.c) $< $(LTAIL))
128
129$(LINTS_DIR)/%.ln:		$(UTSBASE)/sun/io/ttymux/%.c
130	@($(LHEAD) $(LINT.c) $< $(LTAIL))
131