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