Makefile revision fb9f9b975cb9214fec5dab37d461199adab9b964
142N/A#
142N/A# CDDL HEADER START
142N/A#
142N/A# The contents of this file are subject to the terms of the
142N/A# Common Development and Distribution License, Version 1.0 only
142N/A# (the "License"). You may not use this file except in compliance
142N/A# with the License.
142N/A#
142N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
142N/A# or http://www.opensolaris.org/os/licensing.
142N/A# See the License for the specific language governing permissions
142N/A# and limitations under the License.
142N/A#
142N/A# When distributing Covered Code, include this CDDL HEADER in each
142N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
142N/A# If applicable, add the following below this CDDL HEADER, with the
142N/A# fields enclosed by brackets "[]" replaced with your own identifying
142N/A# information: Portions Copyright [yyyy] [name of copyright owner]
142N/A#
142N/A# CDDL HEADER END
142N/A#
142N/A#
2644N/A#ident "%Z%%M% %I% %E% SMI"
142N/A#
142N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
142N/A# Use is subject to license terms.
142N/A#
1273N/A# uts/sparc/Makefile
2894N/A#
618N/A# This makefile drives the production of all implementation architecture
1273N/A# independent modules for the SPARC processor. (For those unsure, this
1273N/A# means the module will run on all SPARC processor based machines
142N/A# running SunOS.)
844N/A
2894N/AUTSBASE = ..
479N/A
1273N/Ainclude Makefile.sparc
142N/A
142N/ALINT_LIBS = $(LINT_LIB) $(GEN_LINT_LIB) \
142N/A $(LINT_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
844N/A
844N/A$(CLOSED_BUILD)LINT_LIBS += $(CLOSED_LINT_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
142N/A
1381N/A# EXPORT DELETE START
844N/ALINT_LIBS += $(SVVS_KMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
1381N/ALINT_LIBS += $(LINT_XMODLIBS:%=$(LINT_LIB_DIR)/llib-l%.ln)
142N/A$(CLOSED_BUILD)CLOSED_LINT_XMODS = $(CLOSED_XMODS:e1000g=)
2644N/A$(CLOSED_BUILD)LINT_LIBS += $(CLOSED_LINT_XMODS:%=$(LINT_LIB_DIR)/llib-l%.ln)
844N/A
2644N/ADRV_KMODS += dprov
2644N/A
142N/A#
3661N/A# CRYPTO_EK_KMODS modules go in the encryption pack (SUNWcry*)
3661N/A# They need to be listed separately since they duplicate global symbols
142N/A# causing the 2nd pass of lint on the kernel to complain. CRYPTO_EK_KMODS
288N/A# should not be listed in the lint target.
142N/A#
142N/A# Don't build these for OpenSolaris, since they will be replaced by
288N/A# binaries that are signed by Sun RE.
288N/A#
142N/A$(CLOSED_BUILD)CRYPTO_EK_KMODS += aes256
142N/A$(CLOSED_BUILD)CRYPTO_EK_KMODS += arcfour2048
142N/A$(CLOSED_BUILD)CRYPTO_EK_KMODS += blowfish448
288N/A# EXPORT DELETE END
288N/A
142N/A#
2644N/A#
2644N/A#
142N/Adef := TARGET= def
142N/Aall := TARGET= all
142N/Ainstall := TARGET= install
142N/Aclean := TARGET= clean
142N/Aclobber := TARGET= clobber
288N/Alint := TARGET= lint
288N/Amodlintlib := TARGET= modlintlib
142N/Amodlist := TARGET= modlist
142N/Amodlist := NO_STATE= -K $$MODSTATE$$$$
142N/Aclean.lint := TARGET= clean.lint
142N/Acheck := TARGET= check
install_h := TARGET= install_h
.KEEP_STATE:
.PARALLEL: $(KMODS) $(CLOSED_KMODS) $(SVVS) $(XMODS) $(CLOSED_XMODS) \
config $(LINT_DEPS)
def all install clean clobber modlist: $(KMODS) $(CLOSED_KMODS) $(SVVS) \
$(XMODS) $(CLOSED_XMODS) config
modlintlib clean.lint: $(LINT_KMODS) $(CLOSED_LINT_KMODS) $(SVVS) \
$(XMODS) $(CLOSED_LINT_XMODS)
$(KMODS) config: FRC
@cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
$(CLOSED_KMODS): FRC
cd $(CLOSED)/uts/sparc/$@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
$(XMODS): FRC
@if [ -f $@/Makefile ]; then \
cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET); \
else \
true; \
fi
$(SVVS) $(CLOSED_XMODS): FRC
@if [ -f $(CLOSED)/uts/sparc/$@/Makefile ]; then \
cd $(CLOSED)/uts/sparc/$@; pwd; \
$(MAKE) $(NO_STATE) $(TARGET); \
else \
true; \
fi
install_h check: FRC
@cd asm; pwd; $(MAKE) $(TARGET)
@cd sys; pwd; $(MAKE) $(TARGET)
@cd v7/sys; pwd; $(MAKE) $(TARGET)
@cd v9/sys; pwd; $(MAKE) $(TARGET)
#
# Full kernel lint target.
#
LINT_TARGET = globallint
globallint:
@-$(ECHO) "\nFULL KERNEL: global crosschecks:"
@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
lint: modlintlib .WAIT $(LINT_DEPS)
# EXPORT DELETE START
EXPORT_SRC:
$(RM) Makefile+
sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
< Makefile > Makefile+
$(MV) Makefile+ Makefile
$(CHMOD) 444 Makefile
# EXPORT DELETE END
include ../Makefile.targ