xref: /titanic_51/usr/src/uts/sparc/Makefile.rules (revision fc51f9bbbff02dbd8c3adf640b1a184ceeb58fa5)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5986fd29aSsetje# Common Development and Distribution License (the "License").
6986fd29aSsetje# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
217c478bd9Sstevel@tonic-gate#
22*fc51f9bbSKrishna Elango# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
247c478bd9Sstevel@tonic-gate#
257c478bd9Sstevel@tonic-gate#	This Makefile defines all file modules and build rules for the
267c478bd9Sstevel@tonic-gate# directory uts/sparc and its children. These are the source files which
277c478bd9Sstevel@tonic-gate# are specific to the sparc processor.
287c478bd9Sstevel@tonic-gate#
297c478bd9Sstevel@tonic-gate#	The following two-level ordering must be maintained in this file.
307c478bd9Sstevel@tonic-gate#	  Lines are sorted first in order of decreasing specificity based on
317c478bd9Sstevel@tonic-gate#	  the first directory component.  That is, sun4u rules come before
327c478bd9Sstevel@tonic-gate#	  sparc rules come before common rules.
337c478bd9Sstevel@tonic-gate#
347c478bd9Sstevel@tonic-gate#	  Lines whose initial directory components are equal are sorted
357c478bd9Sstevel@tonic-gate#	  alphabetically by the remaining components.
367c478bd9Sstevel@tonic-gate
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gate#	Section 1a: C object build rules
397c478bd9Sstevel@tonic-gate#
407c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/dtrace/%.c
417c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
427c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
437c478bd9Sstevel@tonic-gate
447c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/dtrace/%.s
457c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
467c478bd9Sstevel@tonic-gate
477c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/io/%.c
487c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
497c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
507c478bd9Sstevel@tonic-gate
51*fc51f9bbSKrishna Elango$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/io/pciex/%.c
52*fc51f9bbSKrishna Elango	$(COMPILE.c) -o $@ $<
53*fc51f9bbSKrishna Elango	$(CTFCONVERT_O)
54*fc51f9bbSKrishna Elango
557c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/fpu/%.c
567c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
577c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/fs/proc/%.c
607c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
617c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
627c478bd9Sstevel@tonic-gate
637c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/krtld/%.c
647c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
657c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
667c478bd9Sstevel@tonic-gate
67e7cbe64fSgw25295$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/zfs/%.c
68e7cbe64fSgw25295	$(COMPILE.c) -o $@ $<
69e7cbe64fSgw25295	$(CTFCONVERT_O)
70e7cbe64fSgw25295
71986fd29aSsetje#
72986fd29aSsetje# _RELSEG indicates that the dynamic syms are put in a separate ELF
73986fd29aSsetje#	section so they can be freed later.
74986fd29aSsetje#
75986fd29aSsetje$(OBJS_DIR)/kobj_bootflags.o	:= CPPFLAGS += -I$(SRC)/common
76986fd29aSsetje$(OBJS_DIR)/kobj.o		:= CPPFLAGS += -DMODDIR_SUFFIX=\"sparcv9\"
77986fd29aSsetje$(OBJS_DIR)/kobj.o		:= CPPFLAGS += -D_RELSEG
78986fd29aSsetje
797c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/krtld/%.s
807c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/ml/%.s
837c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
847c478bd9Sstevel@tonic-gate
85fcf3ce44SJohn Forte$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/nskern/%.s
86fcf3ce44SJohn Forte	$(COMPILE.s) -o $@ $<
87fcf3ce44SJohn Forte
887c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/os/%.c
897c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
907c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
917c478bd9Sstevel@tonic-gate
927c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/syscall/%.c
937c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
947c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gate#
977c478bd9Sstevel@tonic-gate#	Section 1b: Lint `object' build rules.
987c478bd9Sstevel@tonic-gate#
997c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/dtrace/%.c
1007c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/dtrace/%.s
1037c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/io/%.c
1067c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1077c478bd9Sstevel@tonic-gate
108*fc51f9bbSKrishna Elango$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/io/pciex/%.c
109*fc51f9bbSKrishna Elango	@($(LHEAD) $(LINT.c) $< $(LTAIL))
110*fc51f9bbSKrishna Elango
1117c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/fpu/%.c
1127c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1137c478bd9Sstevel@tonic-gate
114e7cbe64fSgw25295$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/zfs/%.c
115e7cbe64fSgw25295	@($(LHEAD) $(LINT.c) $< $(LTAIL))
116e7cbe64fSgw25295
1177c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/fs/proc/%.c
1187c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1197c478bd9Sstevel@tonic-gate
1207c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/krtld/%.c
1217c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1227c478bd9Sstevel@tonic-gate
123986fd29aSsetje$(OBJS_DIR)/kobj_bootflags.ln	:= CPPFLAGS += -I$(SRC)/common
124986fd29aSsetje$(OBJS_DIR)/kobj.ln		:= CPPFLAGS += -DMODDIR_SUFFIX=\"sparcv9\"
125986fd29aSsetje$(OBJS_DIR)/kobj.ln		:= CPPFLAGS += -D_RELSEG
126986fd29aSsetje
1277c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/krtld/%.s
1287c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1297c478bd9Sstevel@tonic-gate
1307c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/ml/%.s
1317c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1327c478bd9Sstevel@tonic-gate
133fcf3ce44SJohn Forte$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/nskern/%.s
134fcf3ce44SJohn Forte	@($(LHEAD) $(LINT.s) $< $(LTAIL))
135fcf3ce44SJohn Forte
1367c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/os/%.c
1377c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1387c478bd9Sstevel@tonic-gate
1397c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/syscall/%.c
1407c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
141