199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# CDDL HEADER START
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# The contents of this file are subject to the terms of the
199767f8919635c4928607450d9e0abb932109ceToomas Soome# Common Development and Distribution License, Version 1.0 only
199767f8919635c4928607450d9e0abb932109ceToomas Soome# (the "License"). You may not use this file except in compliance
199767f8919635c4928607450d9e0abb932109ceToomas Soome# with the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome# or http://www.opensolaris.org/os/licensing.
199767f8919635c4928607450d9e0abb932109ceToomas Soome# See the License for the specific language governing permissions
199767f8919635c4928607450d9e0abb932109ceToomas Soome# and limitations under the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome#
199767f8919635c4928607450d9e0abb932109ceToomas Soome# When distributing Covered Code, include this CDDL HEADER in each
199767f8919635c4928607450d9e0abb932109ceToomas Soome# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome# If applicable, add the following below this CDDL HEADER, with the
199767f8919635c4928607450d9e0abb932109ceToomas Soome# fields enclosed by brackets "[]" replaced with your own identifying
199767f8919635c4928607450d9e0abb932109ceToomas Soome# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# ident "%Z%%M% %I% %E% SMI"
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# This makefile drives the production of assym.h through genconst/stabs.
#
# sun4u starfire implementation architecture dependent
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../../..
ASSYM_H = $(DSF_DIR)/$(OBJS_DIR)/assym.h
GENCONST = $(DSF_DIR)/$(OBJS_DIR)/genconst
#
# Include common rules.
#
include $(UTSBASE)/sun4u/starfire/Makefile.starfire
#
# Define targets
#
ALL_TARGET = $(ASSYM_H)
#
# This is DSF_DIR. Use a short path.
#
DSF_DIR = .
#
# Overrides
#
CLEANFILES = $(GENCONST) Nothing_to_remove
CLOBBERFILES = $(ASSYM_H) $(CLEANFILES) Nothing_to_remove
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
clean.lint:
install: def
#
# create assym.h
#
$(GENCONST): $(GENCONST_SRC)
$(NATIVECC) -w $(ALWAYS_DEFS) $(GENCONST_DEFS) $(NATIVE_INC_PATH) \
-o $(GENCONST) $(GENCONST_SRC)
$(ASSYM_H): $(GENCONST) $(OFFSETS) $(PLATFORM_OFFSETS)
$(OFFSETS_CREATE) <$(OFFSETS) >$@
$(OFFSETS_CREATE) <$(PLATFORM_OFFSETS) >>$@
$(GENCONST) >>$@
#
# Include common targets.
#
include $(UTSBASE)/sun4u/starfire/Makefile.targ