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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# uts/sun4u/grover/Makefile 24# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 25# Use is subject to license terms. 26# 27#pragma ident "%Z%%M% %I% %E% SMI" 28# 29# This makefile drives the production of the sun4u grover platform 30# module. 31# 32# sun4u implementation architecture dependent 33# 34 35# 36# Path to the base of the uts directory tree (usually /usr/src/uts). 37# 38UTSBASE = ../.. 39 40# 41# Include common rules. 42# 43include $(UTSBASE)/sun4u/grover/Makefile.grover 44 45def := TARGET= def 46all := TARGET= all 47install := TARGET= install 48install_h := TARGET= install_h 49clean := TARGET= clean 50clobber := TARGET= clobber 51lint := TARGET= lint 52lintlib := TARGET= lintlib 53modlintlib := TARGET= modlintlib 54modlist := TARGET= modlist 55modlist := NO_STATE= -K $$MODSTATE$$$$ 56clean.lint := TARGET= clean.lint 57check := TARGET= check 58 59# 60# Default build targets. 61# 62.KEEP_STATE: 63 64def all clean clean.lint clobber modlist: $(GROVER_KMODS) \ 65 $(CLOSED_GROVER_KMODS) 66 67modlintlib: $(GROVER_KMODS) $(CLOSED_GROVER_KMODS) 68 69install: $(ROOT_GROVER_DIR) \ 70 $(USR_GROVER_DIR) \ 71 $(USR_GROVER_INC_DIR) \ 72 $(USR_GROVER_SBIN_DIR) \ 73 $(USR_GROVER_LIB_DIR) \ 74 $(GROVER_KMODS) \ 75 $(CLOSED_GROVER_KMODS) 76 77check install_h: 78 79lint: modlintlib 80 81# 82# The 'lint.platmod' target lints the grover platform module against the sun4u 83# kernel. This ends up doing all the kernel cross-checks, so it takes a couple 84# of minutes. Due to the low ROI, it's not run by default, but it's a good 85# idea to run this if you change os/grover.c. 86# 87LINT_LIBS = $(LINT_LIB) \ 88 -L$(GROVER_LINT_LIB_DIR) \ 89 -L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \ 90 $(CLOSED_LINT_KMODS:%=-l%) \ 91 -L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%) 92 93lint.platmod: modlintlib 94 @-$(ECHO) "\nGrover Platform-dependent module: global crosschecks:" 95 @-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2) 96 97$(GROVER_KMODS): FRC 98 @cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET) 99 100$(CLOSED_GROVER_KMODS): FRC 101 cd $(CLOSED)/uts/sun4u/grover/$@; pwd; $(MAKE) $(NO_STATE) $(TARGET) 102 103# 104# Include common targets. 105# 106include $(UTSBASE)/sun4u/grover/Makefile.targ 107