Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
80833bb9a1bf25dcf19e814438a4b311d2e1f4cffuankg# CDDL HEADER START
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# The contents of this file are subject to the terms of the
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# Common Development and Distribution License, Version 1.0 only
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# (the "License"). You may not use this file except in compliance
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# with the License.
4da61833a1cbbca94094f9653fd970582b97a72etrawick# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4da61833a1cbbca94094f9653fd970582b97a72etrawick# See the License for the specific language governing permissions
4da61833a1cbbca94094f9653fd970582b97a72etrawick# and limitations under the License.
4789804be088bcd86ae637a29cdb7fda25169521jailletc# When distributing Covered Code, include this CDDL HEADER in each
4789804be088bcd86ae637a29cdb7fda25169521jailletc# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4789804be088bcd86ae637a29cdb7fda25169521jailletc# If applicable, add the following below this CDDL HEADER, with the
e50c3026198fd496f183cda4c32a202925476778covener# fields enclosed by brackets "[]" replaced with your own identifying
e50c3026198fd496f183cda4c32a202925476778covener# information: Portions Copyright [yyyy] [name of copyright owner]
5b88c8507d5ef6d0c4cfbc78230294968175b638minfrin# CDDL HEADER END
6c3b9cebb551140fbb25d58bae08b539b3802133ylavic# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
6c3b9cebb551140fbb25d58bae08b539b3802133ylavic# Use is subject to license terms.
4f29b65ab4b547ad5dbe506e2d0ff5d12ead9247ylavic#ident "%Z%%M% %I% %E% SMI"
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic# This makefile drives the production of /unix (and unix.o).
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic# sun4v implementation architecture dependent
506bfe33206b2fece40ef25f695af39dd4130facjkaluza# Path to the base of the uts directory tree (usually /usr/src/uts).
d58a848a016d401b965111e50ef829e1641f7834minfrin# Define the module and object file sets.
d7205b1a86c51c27b71a2c458dc453fd53a261c1covenerGENOPTS = -L $(GENUNIX_DIR)/$(OBJS_DIR) -l $(GENUNIX)
caad2986f81ab263f7af41467dd622dc9add17f3ylavic# Include common rules.
f7317ff316c2b141feea31bddb74d5d3fa1584edjorton# Define targets
a34684a59b60a4173c25035d0c627ef17e6dc215rpluemINSTALL_TARGET = $(UNIX_BIN) $(ROOTMODULE) $(UNIX32_LINK)
1e2d421a36999d292042a5539971070d54aa6c63ylavic# This is UNIX_DIR. Use a short path.
0b67eb8568cd58bb77082703951679b42cf098actrawickCLEANFILES += $(UNIX_O) $(MODSTUBS_O) $(OBJS_DIR)/vers.c \
c1a63b8fad09c419c1a64f75993feb8a343a6801ylavic# lint pass one enforcement
c1a63b8fad09c419c1a64f75993feb8a343a6801ylavic# Turn on doubleword alignment for 64 bit counter timer registers
457468b82e59d01eba00dd9d0817309c8f5e414ejim# Default build targets.
63b9f1f5880391261705f696d7d65507bbe9ace3covener$(UNIX_BIN): $(UNIX_O) $(MODSTUBS_O) $(MAPFILE) $(LIBS) $(DTRACESTUBS)
63b9f1f5880391261705f696d7d65507bbe9ace3covener $(LD) -dy -b -o $@ -e _start -I $(KRTLD) -M $(MAPFILE) \
fc42512879dd0504532f52fe5d0d0383dda96a1eniq#$(UNIX).glom: $(UNIX)
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq# ${LD} -dy -b -z nodefs -o $@ -e _start -I $(KRTLD) -M $(MAPFILE) \
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq# $(UNIX_O) $(MODSTUBS_O) $(GENUNIX_DIR)/$(GENUNIX)
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq# $(POST_PROCESS)
06b8f183140c8e02e0974e938a05078b511d1603covener# Special rules for generating assym.h for inclusion in assembly files.
65967d05f839dbf27cf91d91fa79585eeae19660minfrin# CPU_OBJ now comprises of 2 object files which come from sun4 common
8152945ae46857b170cb227e79bb799f4fc7710dminfrin# and from architecture dependent code. OBJS_DIR is prepended where
8152945ae46857b170cb227e79bb799f4fc7710dminfrin# CPU_OBJ is defined to allow for building multiple CPU_OBJ's
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph# The global lint target builds the kernel lint library (llib-lunix.ln)
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph# which is equivalent to a lint of /unix.o. Then all kernel modules for
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph# this architecture are linted against the kernel lint library.
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick# Note: lint errors in the kernel lint library will be repeated for
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick# each module. It is important that the kernel lint library
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick# be clean to keep the textual output to a reasonable level.
54d750a84a175d8e338880514d440773eb986b50covener# Include common targets.