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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 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# This Makefile defines the build rules for the directory uts/sun4v 29# and its children. These are the source files which sun4v 30# "implementation architecture" dependent. 31# 32# The following two-level ordering must be maintained in this file. 33# Lines are sorted first in order of decreasing specificity based on 34# the first directory component. That is, sun4v rules come before 35# sparc rules come before common rules. 36# 37# Lines whose initial directory components are equal are sorted 38# alphabetically by the remaining components. 39 40# 41# Section 1a: C object build rules 42# 43$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/cpu/%.c 44 $(COMPILE.c) -o $@ $< 45 $(CTFCONVERT_O) 46 47$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/cpu/%.s 48 $(COMPILE.s) -o $@ $< 49 50$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/%.c 51 $(COMPILE.c) -o $@ $< 52 $(CTFCONVERT_O) 53 54$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/memtest/%.c 55 $(COMPILE.c) -o $@ $< 56 $(CTFCONVERT_O) 57 58$(OBJS_DIR)/%.o: $(UTSBASE)/sun4/io/memtest/%.c 59 $(COMPILE.c) -o $@ $< 60 $(CTFCONVERT_O) 61 62$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/memtest/%.s 63 $(COMPILE.s) -o $@ $< 64 65$(OBJS_DIR)/%.o: $(UTSBASE)/sun4/io/memtest/%.s 66 $(COMPILE.s) -o $@ $< 67 68$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/ml/%.s 69 $(COMPILE.s) -o $@ $< 70 71$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/os/%.c 72 $(COMPILE.c) -o $@ $< 73 $(CTFCONVERT_O) 74 75$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/pcbe/%.c 76 $(COMPILE.c) -o $@ $< 77 $(CTFCONVERT_O) 78 79$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/px/%.c 80 $(COMPILE.c) -o $@ $< 81 $(CTFCONVERT_O) 82 83$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/px/%.s 84 $(COMPILE.s) -o $@ $< 85 86$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/ncp/%.c 87 $(COMPILE.c) -o $@ $< 88 $(CTFCONVERT_O) 89 90$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/vm/%.c 91 $(COMPILE.c) -o $@ $< 92 $(CTFCONVERT_O) 93 94$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/vm/%.s 95 $(COMPILE.s) -o $@ $< 96 97$(OBJS_DIR)/%.o: $(UTSBASE)/sfmmu/ml/%.s 98 $(COMPILE.s) -o $@ $< 99 100$(OBJS_DIR)/%.o: $(UTSBASE)/sfmmu/vm/%.c 101 $(COMPILE.c) -o $@ $< 102 $(CTFCONVERT_O) 103 104$(OBJS_DIR)/%.o: $(UTSBASE)/sparc/os/%.c 105 $(COMPILE.c) -o $@ $< 106 $(CTFCONVERT_O) 107 108$(OBJS_DIR)/%.o: $(UTSBASE)/common/os/%.c 109 $(COMPILE.c) -o $@ $< 110 $(CTFCONVERT_O) 111 112$(OBJS_DIR)/%.o: $(SRC)/common/mdesc/%.c 113 $(COMPILE.c) -o $@ $< 114 $(CTFCONVERT_O) 115 116$(OBJS_DIR)/%.o: $(SRC)/common/atomic/sparcv9/%.s 117 $(COMPILE.s) -o $@ $< 118 119$(OBJS_DIR)/%.o: $(SRC)/common/crypto/arcfour/sun4v/%.c 120 $(COMPILE.c) -o $@ $< 121 $(CTFCONVERT_O) 122 123$(OBJS_DIR)/dtracestubs.s: $(UNIX_O) $(LIBS) 124 nm -u $(UNIX_O) $(LIBS) | grep __dtrace_probe_ | sort | uniq | nawk '{ \ 125 printf("\t.global %s\n\t.type %s, #function\n%s:\n", \ 126 $$1, $$1, $$1); }' > $(OBJS_DIR)/dtracestubs.s 127 128$(DTRACESTUBS): $(DTRACESTUBS_O) 129 $(BUILD.SO) $(DTRACESTUBS_O) 130 131# 132# Section 1b: Lint `object' build rules 133# 134$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/cpu/%.c 135 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 136 137$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/cpu/%.s 138 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 139 140$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/%.c 141 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 142 143$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/memtest/%.c 144 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 145 146$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4/io/memtest/%.c 147 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 148 149$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/memtest/%.s 150 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 151 152$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4/io/memtest/%.s 153 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 154 155$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/px/%.c 156 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 157 158$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/px/%.s 159 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 160 161$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/ncp/%.c 162 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 163 164$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/ml/%.s 165 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 166 167$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/os/%.c 168 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 169 170$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/pcbe/%.c 171 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 172 173$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/vm/%.c 174 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 175 176$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/vm/%.s 177 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 178 179$(LINTS_DIR)/%.ln: $(UTSBASE)/sfmmu/ml/%.s 180 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 181 182$(LINTS_DIR)/%.ln: $(UTSBASE)/sfmmu/vm/%.c 183 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 184 185$(LINTS_DIR)/%.ln: $(UTSBASE)/sparc/os/%.c 186 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 187 188$(LINTS_DIR)/%.ln: $(UTSBASE)/common/os/%.c 189 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 190 191$(LINTS_DIR)/%.ln: $(SRC)/common/mdesc/%.c 192 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 193 194$(LINTS_DIR)/%.ln: $(SRC)/common/atomic/%.c 195 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 196