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# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25#ident "%Z%%M% %I% %E% SMI" 26# 27 28all: $(PROG) 29 30%.o: ../../../sparc/mdb/%.c 31 $(COMPILE.c) $< 32 $(CTFCONVERT_O) 33 34%.ln: ../../../sparc/mdb/%.c 35 $(LINT.c) -c $< 36 37kaif.fth: ../../../sparc/v9/kmdb/kaif_regs.h 38 39ROOT_MISC_DIR = $(ROOT)/platform/sun4v/kernel/misc 40ROOT_MISC_DIR_64 = $(ROOT_MISC_DIR)/$(SUBDIR64) 41 42ROOTMISC = $(ROOT_MISC_DIR)/$(PROG) 43ROOTMISC64 = $(ROOT_MISC_DIR_64)/$(PROG) 44 45include ../../../../Makefile.cmd 46include ../../../../Makefile.cmd.64 47include ../../../sparc/Makefile.sparcv9 48include ../../../sparc/Makefile.kmdb.64 49include ../../../Makefile.kmdb 50 51STANDLIBS += $(ROOT)/usr/lib/sparcv9/libstanddisasm.so 52 53KMDB_FPTEST = \ 54 $(FINDFP) -x kaif_resume -x kaif_trap_common $@ 55 56QTOOLS_ROOT= $(SPRO_ROOT)/sun4v 57sparc_AS= $(QTOOLS_ROOT)/qas -xregsym=no 58sparcv9_AS= $(QTOOLS_ROOT)/qas -xregsym=no 59 60# 61# Uncomment the following line to enable trap accounting. A DTLB translation 62# will be added for the trap table, and each handler installed by KMDB will use 63# its padding to keep a trap count. See kaif_handlers.s. 64# 65#TRAPCOUNT = -DKMDB_TRAPCOUNT 66 67CPPFLAGS += -I../../../sparc/mdb -I.. -I$(SRC)/uts/sun4 -I$(SRC)/uts/sun4v 68CPPFLAGS += $(TRAPCOUNT) 69CPPFLAGS += -Dsun4v 70CPPFLAGS += -I$(SRC)/cmd/mdb/sparc 71CPPFLAGS += -I$(SRC)/cmd/mdb/sparc/v9 -I$(SRC)/cmd/mdb/sparc/v9/kmdb 72ASFLAGS += -xarch=v9d -I$(SRC)/uts/sun4 -I$(SRC)/uts/sun4v $(TRAPCOUNT) 73ASFLAGS += -Dsun4v 74ASFLAGS += -I$(SRC)/cmd/mdb/sparc 75ASFLAGS += -I$(SRC)/cmd/mdb/sparc/v9 -I$(SRC)/cmd/mdb/sparc/v9/kmdb 76 77install: all $(ROOTMISC64) kaif.fth 78 79# 80# lint rules 81# 82 83.PARALLEL: lintkmdb lintprom lintkctl 84 85lint: lintkmdb lintprom lintkctl 86 $(LINT) $(ALLLINTFLAGS) $(KMDBOBJS:%.o=%.ln) $(PROMOBJS:%.o=%.ln) 87 88lintkmdb: $(KMDBOBJS:%.o=%.ln) 89 $(LINT) $(LINTFLAGS) $(KMDBOBJS:%.o=%.ln) 90 91lintprom: $(PROMOBJS:%.o=%.ln) 92 $(LINT) $(LINTFLAGS) $(PROMOBJS:%.o=%.ln) 93 94lintkctl: $(KCTLOBJS:%.o=%.ln) 95 $(LINT) $(ALLLINTFLAGS) $(KCTLOBJS:%.o=%.ln) 96 97kaif_off.h: ../../../sparc/kmdb/kaif_off.in 98 $(OFFSETS_CREATE) <../../../sparc/kmdb/kaif_off.in >$@ 99 100kmdb_context_off.h: ../../../sparc/kmdb/kmdb_context_off.in 101 $(OFFSETS_CREATE) <../../../sparc/kmdb/kmdb_context_off.in >$@ 102 103# 104# Dynamic rules for object construction 105# 106%.o: ../../../common/kmdb/%.c 107 $(COMPILE.c) -o $@ $< 108 $(CTFCONVERT_O) 109 110%.o: ../../../common/kmdb/kctl/%.c 111 $(COMPILE.c) -o $@ $< 112 $(CTFCONVERT_O) 113 114%.o: ../../../common/kmdb/kctl/%.s 115 $(COMPILE.s) -o $@ $< 116 117%.o: ../../../common/mdb/%.c 118 $(COMPILE.c) -o $@ $< 119 $(CTFCONVERT_O) 120 121%.o: ../../../sparc/kmdb/%.c 122 $(COMPILE.c) -o $@ $< 123 $(CTFCONVERT_O) 124 125%.o: ../../../sparc/kmdb/%.s 126 $(COMPILE.s) -o $@ $< 127 128%.o: ../../../sparc/kmdb/kctl/%.c 129 $(COMPILE.c) -o $@ $< 130 $(CTFCONVERT_O) 131 132%.o: ../../../sparc/kmdb/kctl/%.s 133 $(COMPILE.s) -o $@ $< 134 135%.o: ../../../sparc/mdb/%.c 136 $(COMPILE.c) -o $@ $< 137 $(CTFCONVERT_O) 138 139%.o: ../../../sparc/v9/kmdb/%.c 140 $(COMPILE.c) -o $@ $< 141 $(CTFCONVERT_O) 142 143%.o: ../../../sparc/v9/kmdb/%.s 144 $(COMPILE.s) -o $@ $< 145 146%.o: ../../../sparc/v9/kmdb/kctl/%.s 147 $(COMPILE.s) -o $@ $< 148 149%.o: $(SRC)/common/net/util/%.c 150 $(COMPILE.c) $< 151 $(CTFCONVERT_O) 152 153# 154# Lint 155# 156 157%.ln: ../../../common/kmdb/%.c 158 $(LINT.c) -c $< 159 160%.ln: ../../../common/kmdb/kctl/%.c 161 $(LINT.c) -c $< 162 163%.ln: ../../../common/kmdb/kctl/%.s 164 $(LINT.s) -c $< 165 166%.ln: ../../../common/mdb/%.c 167 $(LINT.c) -c $< 168 169%.ln: ../../../sparc/kmdb/%.c 170 $(LINT.c) -c $< 171 172%.ln: ../../../sparc/kmdb/%.s 173 $(LINT.s) -c $< 174 175%.ln: ../../../sparc/kmdb/kctl/%.c 176 $(LINT.c) -c $< 177 178%.ln: ../../../sparc/kmdb/kctl/%.s 179 $(LINT.s) -c $< 180 181%.ln: ../../../sparc/mdb/%.c 182 $(LINT.c) -c $< 183 184%.ln: ../../../sparc/v9/kmdb/%.c 185 $(LINT.c) -c $< 186 187%.ln: ../../../sparc/v9/kmdb/%.s 188 $(LINT.s) -c $< 189 190%.ln: ../../../sparc/v9/kmdb/kctl/%.s 191 $(LINT.s) -c $< 192 193%.ln: $(SRC)/common/net/util/%.c 194 $(LINT.c) -c $< 195 196# 197# Installation targets 198# 199 200$(ROOT_MISC_DIR) $(ROOT_MISC_DIR_64): 201 -$(INS.dir.root.sys) 202 203$(ROOT_MISC_DIR)/%: % $(ROOT_MISC_DIR) 204 $(INS.file) 205 206$(ROOT_MISC_DIR_64)/%: % $(ROOT_MISC_DIR_64) 207 $(INS.file) 208