xref: /titanic_53/usr/src/uts/sparc/Makefile.rules (revision fcf3ce441efd61da9bb2884968af01cb7c1452cc)
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#
22e7cbe64fSgw25295# Copyright 2008 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
517c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/fpu/%.c
527c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
537c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
547c478bd9Sstevel@tonic-gate
557c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/fs/proc/%.c
567c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
577c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/krtld/%.c
607c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
617c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
627c478bd9Sstevel@tonic-gate
63e7cbe64fSgw25295$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/zfs/%.c
64e7cbe64fSgw25295	$(COMPILE.c) -o $@ $<
65e7cbe64fSgw25295	$(CTFCONVERT_O)
66e7cbe64fSgw25295
67986fd29aSsetje#
68986fd29aSsetje# _RELSEG indicates that the dynamic syms are put in a separate ELF
69986fd29aSsetje#	section so they can be freed later.
70986fd29aSsetje#
71986fd29aSsetje$(OBJS_DIR)/kobj_bootflags.o	:= CPPFLAGS += -I$(SRC)/common
72986fd29aSsetje$(OBJS_DIR)/kobj.o		:= CPPFLAGS += -DMODDIR_SUFFIX=\"sparcv9\"
73986fd29aSsetje$(OBJS_DIR)/kobj.o		:= CPPFLAGS += -D_RELSEG
74986fd29aSsetje
757c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/krtld/%.s
767c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/ml/%.s
797c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
807c478bd9Sstevel@tonic-gate
81*fcf3ce44SJohn Forte$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/nskern/%.s
82*fcf3ce44SJohn Forte	$(COMPILE.s) -o $@ $<
83*fcf3ce44SJohn Forte
847c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/os/%.c
857c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
867c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
877c478bd9Sstevel@tonic-gate
887c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/sparc/syscall/%.c
897c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
907c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
917c478bd9Sstevel@tonic-gate
927c478bd9Sstevel@tonic-gate#
937c478bd9Sstevel@tonic-gate#	Section 1b: Lint `object' build rules.
947c478bd9Sstevel@tonic-gate#
957c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/dtrace/%.c
967c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
977c478bd9Sstevel@tonic-gate
987c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/dtrace/%.s
997c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1007c478bd9Sstevel@tonic-gate
1017c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/io/%.c
1027c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1037c478bd9Sstevel@tonic-gate
1047c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/fpu/%.c
1057c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1067c478bd9Sstevel@tonic-gate
107e7cbe64fSgw25295$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/zfs/%.c
108e7cbe64fSgw25295	@($(LHEAD) $(LINT.c) $< $(LTAIL))
109e7cbe64fSgw25295
1107c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/fs/proc/%.c
1117c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1127c478bd9Sstevel@tonic-gate
1137c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/krtld/%.c
1147c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1157c478bd9Sstevel@tonic-gate
116986fd29aSsetje$(OBJS_DIR)/kobj_bootflags.ln	:= CPPFLAGS += -I$(SRC)/common
117986fd29aSsetje$(OBJS_DIR)/kobj.ln		:= CPPFLAGS += -DMODDIR_SUFFIX=\"sparcv9\"
118986fd29aSsetje$(OBJS_DIR)/kobj.ln		:= CPPFLAGS += -D_RELSEG
119986fd29aSsetje
1207c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/krtld/%.s
1217c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1227c478bd9Sstevel@tonic-gate
1237c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/ml/%.s
1247c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
1257c478bd9Sstevel@tonic-gate
126*fcf3ce44SJohn Forte$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/nskern/%.s
127*fcf3ce44SJohn Forte	@($(LHEAD) $(LINT.s) $< $(LTAIL))
128*fcf3ce44SJohn Forte
1297c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/os/%.c
1307c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
1317c478bd9Sstevel@tonic-gate
1327c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/sparc/syscall/%.c
1337c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
134