xref: /titanic_41/usr/src/uts/sun4u/zuluvm/Makefile (revision 355b4669e025ff377602b6fc7caaf30dbc218371)
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#	Default build targets.
85#
86.KEEP_STATE:
87
88def:		$(DEF_DEPS)
89
90all:		$(ALL_DEPS)
91
92clean:		$(CLEAN_DEPS)
93
94clobber:	$(CLOBBER_DEPS)
95
96lint:		$(LINT_DEPS)
97
98modlintlib:	$(MODLINTLIB_DEPS) lint64
99
100clean.lint:	$(CLEAN_LINT_DEPS)
101
102install:	$(INSTALL_DEPS)
103
104#
105# Special rules for generating assym.h for inclusion in assembly files
106#
107#$(DSF_DIR)/$(OBJS_DIR)/assym.h: FRC
108#	@cd $(DSF_DIR); $(MAKE) all.targ
109#
110AS_INC_PATH	+= -I$(OBJS_DIR)
111
112ZULUVM_DEPS	+= zulu_hat_asm.o zulu_asm.o zulu_asm.ln zulu_hat_asm.ln
113
114CLEANFILES	+= $(ZULUVM_OFFSETS_H) $(ZULUVM_OFFSETS_OUT)
115
116$(ZULUVM_DEPS:%=$(OBJS_DIR)/%):	$(ZULUVM_OFFSETS_H)
117
118$(ZULUVM_OFFSETS_H): $(ZULUVM_OFFSETS)
119	$(OFFSETS_CREATE) <$(ZULUVM_OFFSETS) >$@
120
121#
122#	Include common targets.
123#
124include $(UTSBASE)/sun4u/Makefile.targ
125