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/cherrystone/Makefile.targ 24# Copyright 2001-2003 Sun Microsystems, Inc. All rights reserved. 25# Use is subject to license terms. 26# 27#ident "%Z%%M% %I% %E% SMI" 28# 29# Common targets for sun4u Cherrystone implementation specific modules. 30# 31# 32 33IMPLEMENTED_PLATFORM = SUNW,Sun-Fire-480R 34 35LINKED_PLATFORMS = SUNW,Sun-Fire-V490 36# 37# Platform targets 38# 39$(ROOT_CHERRYSTONE_DIR): $(ROOT_PLAT_DIR) 40 -$(INS.dir.root.sys) 41 42$(ROOT_CHERRYSTONE_MOD_DIR): $(ROOT_CHERRYSTONE_DIR) 43 -$(INS.dir.root.sys) 44 45$(ROOT_CHERRYSTONE_DRV_DIR_32): $(ROOT_CHERRYSTONE_MOD_DIR) 46 -$(INS.dir.root.sys) 47 48$(ROOT_CHERRYSTONE_DRV_DIR_64): $(ROOT_CHERRYSTONE_DRV_DIR_32) 49 -$(INS.dir.root.sys) 50 51$(ROOT_CHERRYSTONE_MISC_DIR_32): $(ROOT_CHERRYSTONE_MOD_DIR) 52 -$(INS.dir.root.sys) 53 54$(ROOT_CHERRYSTONE_MISC_DIR_64): $(ROOT_CHERRYSTONE_MISC_DIR_32) 55 -$(INS.dir.root.sys) 56 57$(ROOT_CHERRYSTONE_CRYPTO_DIR_32): $(ROOT_CHERRYSTONE_MOD_DIR) 58 -$(INS.dir.root.sys) 59 60$(ROOT_CHERRYSTONE_CRYPTO_DIR_64): $(ROOT_CHERRYSTONE_CRYPTO_DIR_32) 61 -$(INS.dir.root.sys) 62 63$(USR_CHERRYSTONE_DIR): $(USR_PLAT_DIR) 64 -$(INS.dir.root.sys) 65 66$(USR_CHERRYSTONE_INC_DIR): $(USR_CHERRYSTONE_DIR) 67 -$(INS.slink4) 68 69$(USR_CHERRYSTONE_SBIN_DIR): $(USR_CHERRYSTONE_DIR) 70 -$(INS.slink5) 71 72$(USR_CHERRYSTONE_LIB_DIR): $(USR_CHERRYSTONE_DIR) 73 -$(INS.dir.root.bin) 74 75$(USR_CHERRYSTONE_ISYS_DIR): $(USR_CHERRYSTONE_INC_DIR) 76 -$(INS.dir.root.bin) 77 78$(ROOT_CHERRYSTONE_MOD_DIR)/%: $(OBJS_DIR)/% $(ROOT_CHERRYSTONE_MOD_DIR) FRC 79 $(INS.file) 80 81$(ROOT_CHERRYSTONE_MISC_DIR)/%: $(OBJS_DIR)/% $(ROOT_CHERRYSTONE_MISC_DIR) FRC 82 $(INS.file) 83 84$(ROOT_CHERRYSTONE_DRV_DIR)/%: $(OBJS_DIR)/% $(ROOT_CHERRYSTONE_DRV_DIR) FRC 85 $(INS.file) 86 87$(LINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%): $(ROOT_PLAT_DIR) 88 $(INS.slink3) 89 90$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib): $(USR_PLAT_DIR) 91 -$(INS.dir.root.bin) 92 93$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/include): $(USR_PLAT_DIR) 94 $(INS.slink4) 95 96$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/sbin): $(USR_PLAT_DIR) 97 $(INS.slink5) 98# 99# 100# Include common targets. 101# 102include $(UTSBASE)/sun4u/cherrystone/Makefile.rules 103include $(UTSBASE)/sun4u/Makefile.targ 104