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# This makefile drives the production of the zulunvm 28# mics module 29# 30# sun4u implementation architecture dependent 31# 32 33# 34# Path to the base of the uts directory tree (usually /usr/src/uts). 35# 36UTSBASE = ../.. 37 38# 39# Define the module and object file sets. 40# 41MODULE = zuluvm 42OBJECTS = $(ZULUVM_OBJS:%=$(OBJS_DIR)/%) 43LINTS = $(ZULUVM_OBJS:%.o=$(LINTS_DIR)/%.ln) 44ROOTMODULE = $(ROOT_PSM_MISC_DIR)/$(MODULE) 45 46# 47# Include common rules. 48# 49include $(UTSBASE)/sun4u/Makefile.sun4u 50 51# 52# Override defaults to build a unique, local modstubs.o. 53# 54MODSTUBS_DIR = . 55$(MODSTUBS_O) := AS_CPPFLAGS += -DZULU_MISC_MODULE 56 57CLEANFILES += $(MODSTUBS_O) 58 59# 60# Define targets 61# 62ALL_TARGET = $(BINARY) 63LINT_TARGET = $(MODULE).lint 64INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 65 66ZULUVM_OFFSETS = $(UTSBASE)/sun4u/zuluvm/zuluvm_offsets.in 67ZULUVM_OFFSETS_H = $(OBJS_DIR)/zuluvm_offsets.h 68 69ZULUVM_STATS = -DZULUVM_STATS 70 71# 72# We turn off tnf probes for opt builds. 73# 74PROBE_FLAGS_OBJ64 = -DNPROBE 75 76# 77# lint pass one enforcement 78# 79CFLAGS += $(CCVERBOSE) $(ZULUVM_STATS) $(PROBE_FLAGS_$(BUILD_TYPE)) 80ASFLAGS += $(ZULUVM_STATS) 81LINTFLAGS += -I$(OBJS_DIR) 82 83# 84# For now, disable these lint checks; maintainers should endeavor 85# to investigate and remove these for maximum lint coverage. 86# Please do not carry these forward to new Makefiles. 87# 88LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 89LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 90 91# 92# Default build targets. 93# 94.KEEP_STATE: 95 96def: $(DEF_DEPS) 97 98all: $(ALL_DEPS) 99 100clean: $(CLEAN_DEPS) 101 102clobber: $(CLOBBER_DEPS) 103 104lint: $(LINT_DEPS) 105 106modlintlib: $(MODLINTLIB_DEPS) lint64 107 108clean.lint: $(CLEAN_LINT_DEPS) 109 110install: $(INSTALL_DEPS) 111 112# 113# Special rules for generating assym.h for inclusion in assembly files 114# 115#$(DSF_DIR)/$(OBJS_DIR)/assym.h: FRC 116# @cd $(DSF_DIR); $(MAKE) all.targ 117# 118AS_INC_PATH += -I$(OBJS_DIR) 119 120ZULUVM_DEPS += zulu_hat_asm.o zulu_asm.o zulu_asm.ln zulu_hat_asm.ln 121 122CLEANFILES += $(ZULUVM_OFFSETS_H) $(ZULUVM_OFFSETS_OUT) 123 124$(ZULUVM_DEPS:%=$(OBJS_DIR)/%): $(ZULUVM_OFFSETS_H) 125 126$(ZULUVM_OFFSETS_H): $(ZULUVM_OFFSETS) 127 $(OFFSETS_CREATE) <$(ZULUVM_OFFSETS) >$@ 128 129# 130# Include common targets. 131# 132include $(UTSBASE)/sun4u/Makefile.targ 133