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# 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/ml/%.s 55 $(COMPILE.s) -o $@ $< 56 57$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/os/%.c 58 $(COMPILE.c) -o $@ $< 59 $(CTFCONVERT_O) 60 61$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/pcbe/%.c 62 $(COMPILE.c) -o $@ $< 63 $(CTFCONVERT_O) 64 65$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/promif/%.c 66 $(COMPILE.c) -o $@ $< 67 $(CTFCONVERT_O) 68 69$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/px/%.c 70 $(COMPILE.c) -o $@ $< 71 $(CTFCONVERT_O) 72 73$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/px/%.s 74 $(COMPILE.s) -o $@ $< 75 76$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/fpc/%.c 77 $(COMPILE.c) -o $@ $< 78 $(CTFCONVERT_O) 79 80$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/fpc/%.s 81 $(COMPILE.s) -o $@ $< 82 83$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/n2piupc/%.c 84 $(COMPILE.c) -o $@ $< 85 $(CTFCONVERT_O) 86 87$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/n2piupc/%.s 88 $(COMPILE.s) -o $@ $< 89 90$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/glvc/%.c 91 $(COMPILE.c) -o $@ $< 92 $(CTFCONVERT_O) 93 94$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/glvc/%.s 95 $(COMPILE.s) -o $@ $< 96 97$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/vm/%.c 98 $(COMPILE.c) -o $@ $< 99 $(CTFCONVERT_O) 100 101$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/vm/%.s 102 $(COMPILE.s) -o $@ $< 103 104$(OBJS_DIR)/%.o: $(UTSBASE)/sfmmu/ml/%.s 105 $(COMPILE.s) -o $@ $< 106 107$(OBJS_DIR)/%.o: $(UTSBASE)/sfmmu/vm/%.c 108 $(COMPILE.c) -o $@ $< 109 $(CTFCONVERT_O) 110 111$(OBJS_DIR)/%.o: $(UTSBASE)/sparc/os/%.c 112 $(COMPILE.c) -o $@ $< 113 $(CTFCONVERT_O) 114 115$(OBJS_DIR)/%.o: $(UTSBASE)/common/os/%.c 116 $(COMPILE.c) -o $@ $< 117 $(CTFCONVERT_O) 118 119$(OBJS_DIR)/%.o: $(SRC)/common/mdesc/%.c 120 $(COMPILE.c) -o $@ $< 121 $(CTFCONVERT_O) 122 123$(OBJS_DIR)/%.o: $(UTSBASE)/sun4v/io/niumx/%.c 124 $(COMPILE.c) -o $@ $< 125 $(CTFCONVERT_O) 126 127$(OBJS_DIR)/%.o: $(SRC)/common/atomic/sparcv9/%.s 128 $(COMPILE.s) -o $@ $< 129 130$(OBJS_DIR)/%.o: $(SRC)/common/crypto/arcfour/sun4v/%.c 131 $(COMPILE.c) -o $@ $< 132 $(CTFCONVERT_O) 133 134$(OBJS_DIR)/dtracestubs.s: $(UNIX_O) $(LIBS) 135 nm -u $(UNIX_O) $(LIBS) | grep __dtrace_probe_ | sort | uniq | nawk '{ \ 136 printf("\t.global %s\n\t.type %s, #function\n%s:\n", \ 137 $$1, $$1, $$1); }' > $(OBJS_DIR)/dtracestubs.s 138 139$(DTRACESTUBS): $(DTRACESTUBS_O) 140 $(BUILD.SO) $(DTRACESTUBS_O) 141 142# 143# Section 1b: Lint `object' build rules 144# 145$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/cpu/%.c 146 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 147 148$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/cpu/%.s 149 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 150 151$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/%.c 152 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 153 154$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/px/%.c 155 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 156 157$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/px/%.s 158 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 159 160$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/niumx/%.c 161 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 162 163$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/fpc/%.c 164 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 165 166$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/fpc/%.s 167 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 168 169$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/n2piupc/%.c 170 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 171 172$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/n2piupc/%.s 173 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 174 175$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/glvc/%.c 176 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 177 178$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/io/glvc/%.s 179 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 180 181$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/ml/%.s 182 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 183 184$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/os/%.c 185 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 186 187$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/pcbe/%.c 188 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 189 190$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/promif/%.c 191 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 192 193$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/vm/%.c 194 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 195 196$(LINTS_DIR)/%.ln: $(UTSBASE)/sun4v/vm/%.s 197 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 198 199$(LINTS_DIR)/%.ln: $(UTSBASE)/sfmmu/ml/%.s 200 @($(LHEAD) $(LINT.s) $< $(LTAIL)) 201 202$(LINTS_DIR)/%.ln: $(UTSBASE)/sfmmu/vm/%.c 203 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 204 205$(LINTS_DIR)/%.ln: $(UTSBASE)/sparc/os/%.c 206 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 207 208$(LINTS_DIR)/%.ln: $(UTSBASE)/common/os/%.c 209 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 210 211$(LINTS_DIR)/%.ln: $(SRC)/common/mdesc/%.c 212 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 213 214$(LINTS_DIR)/%.ln: $(SRC)/common/atomic/%.c 215 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 216