Makefile revision d58fda4376e4bf67072ce2e69f6f47036f9dbb68
183N/A#
3261N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
268N/A# Use is subject to license terms.
268N/A#
268N/A# ident "%Z%%M% %I% %E% SMI"
268N/A#
2362N/A# uts/sun4u/seattle/Makefile
268N/A#
2362N/A# This makefile drives the production of the sun4u seattle platform
268N/A# module.
268N/A#
268N/A# sun4u implementation architecture dependent
268N/A#
268N/A
268N/A#
268N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
268N/A#
268N/AUTSBASE = ../..
268N/A
268N/A#
2362N/A# Include common rules.
2362N/A#
2362N/Ainclude $(UTSBASE)/sun4u/seattle/Makefile.seattle
183N/A
183N/Adef := TARGET= def
183N/Aall := TARGET= all
183N/Ainstall := TARGET= install
183N/Ainstall_h := TARGET= install_h
183N/Aclean := TARGET= clean
183N/Aclobber := TARGET= clobber
183N/Alint := TARGET= lint
183N/Alintlib := TARGET= lintlib
183N/Amodlintlib := TARGET= modlintlib
183N/Aclean.lint := TARGET= clean.lint
268N/Acheck := TARGET= check
2157N/A
2157N/A#
183N/A# Default build targets.
183N/A#
183N/A.KEEP_STATE:
183N/A
183N/Adef all clean clean.lint clobber: $(SEATTLE_KMODS)
183N/A
183N/Amodlintlib: $(SEATTLE_KMODS)
183N/A
183N/ALINKED_PLATFORMS = SUNW,Sun-Fire-V245
183N/A
183N/A# EXPORT DELETE START
#
# aes256 is delivered in the SUNWcryr package which is removed from
# the EXPORT_SRC build.
#
SEATTLE_CRYPTO_LINKS += aes256
# EXPORT DELETE END
install: $(ROOT_SEATTLE_DIR) \
$(USR_SEATTLE_DIR) \
$(USR_SEATTLE_INC_DIR) \
$(USR_SEATTLE_SBIN_EEPROM) \
$(USR_SEATTLE_SBIN_PRTDIAG) \
$(USR_SEATTLE_SBIN_TRAPSTAT) \
$(USR_SEATTLE_LIB_DIR) \
$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%) \
$(LINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%) \
$(SEATTLE_CRYPTO_LINKS) \
.WAIT $(SEATTLE_KMODS)
check install_h:
lint: modlintlib
#
# The 'lint.platmod' target lints the seattle platform module against the sun4u
# kernel. This ends up doing all the kernel cross-checks, so it takes a couple
# of minutes. Due to the low ROI, it's not run by default, but it's a good
# idea to run this if you change os/seattle.c.
#
LINT_LIBS = $(LINT_LIB) \
-L$(SEATTLE_LINT_LIB_DIR) \
-L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \
-L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%)
lint.platmod: modlintlib
@-$(ECHO) "\nSeattle Platform-dependent module: global crosschecks:"
@-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
$(SEATTLE_KMODS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
$(SEATTLE_CRYPTO_LINKS): $(ROOT_SEATTLE_CRYPTO_DIR_64)
-$(RM) $(ROOT_SEATTLE_CRYPTO_DIR_64)/$@;
$(SYMLINK) $(ROOT_US3_CRYPTO_LINK)/$@ $(ROOT_SEATTLE_CRYPTO_DIR_64)/$@
# 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 common targets.
#
include $(UTSBASE)/sun4u/seattle/Makefile.targ