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 (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. 23# 24# Definitions common to tool source. 25# 26include $(SRC)/Makefile.master 27 28FILEMODE= 0555 29 30TOOLS= $(SRC)/tools 31TOOLS_PROTO= $(TOOLS)/proto/root_$(MACH)-nd 32ROOTOPT= $(TOOLS_PROTO)/opt 33ROOTONBLD= $(ROOTOPT)/onbld 34ROOTONBLDBIN= $(ROOTONBLD)/bin 35ROOTONBLDBINMACH= $(ROOTONBLD)/bin/$(MACH) 36ROOTONBLDETC= $(ROOTONBLD)/etc 37ROOTONBLDLIB= $(ROOTONBLD)/lib 38ROOTONBLDLIBMACH= $(ROOTONBLD)/lib/$(MACH) 39ROOTONBLDLIBMACH64= $(ROOTONBLD)/lib/$(MACH)/64 40ROOTONBLDLIBPERL= $(ROOTONBLD)/lib/perl 41ROOTONBLDLIBPY= $(ROOTONBLD)/lib/python 42ROOTONBLDENV= $(ROOTONBLD)/env 43ROOTONBLDMAN= $(ROOTONBLD)/man 44ROOTONBLDMAN1ONBLD= $(ROOTONBLD)/man/man1onbld 45ROOTONBLDETCABI= $(ROOTONBLD)/etc/abi 46ROOTONBLDETCEXCEPT= $(ROOTONBLD)/etc/exception_lists 47ROOTONBLDSHARE= $(ROOTONBLD)/share 48 49CC = $(NATIVECC) 50CCC = $(NATIVECCC) 51CFLAGS = $(NATIVE_CFLAGS) 52CPPFLAGS= -D_TS_ERRNO 53ELFSIGN_O= $(TRUE) 54LDLIBS= 55LDFLAGS= $(MAPFILE.NES:%=-M%) $(MAPFILE.NED:%=-M%) \ 56 $(MAPFILE.PGA:%=-M%) 57 58# Unset CW_LINKER so we run the default. We don't set LD here to avoid taking 59# the journey through LD_ALTEXEC unnecessarily. 60CW_LINKER= 61 62ROOTONBLDPROG= $(PROG:%=$(ROOTONBLDBIN)/%) 63ROOTONBLDMACHPROG= $(PROG:%=$(ROOTONBLDBINMACH)/%) 64ROOTONBLDSHFILES= $(SHFILES:%=$(ROOTONBLDBIN)/%) 65ROOTONBLDMAKEFILES= $(MAKEFILES:%=$(ROOTONBLDBIN)/%) 66ROOTONBLDMACHSHFILES= $(SHFILES:%=$(ROOTONBLDBINMACH)/%) 67ROOTONBLDMACHBINARIES= $(BINARIES:%=$(ROOTONBLDBINMACH)/%) 68ROOTONBLDETCFILES= $(ETCFILES:%=$(ROOTONBLDETC)/%) 69ROOTONBLDENVFILES= $(ENVFILES:%=$(ROOTONBLDENV)/%) 70ROOTONBLDPERLFILES= $(PERLFILES:%=$(ROOTONBLDBIN)/%) 71ROOTONBLDPERLMODULES= $(PERLMODULES:%=$(ROOTONBLDLIBPERL)/%) 72ROOTONBLDPYFILES= $(PYFILES:%=$(ROOTONBLDBIN)/%) 73ROOTONBLDMAN1ONBLDFILES=$(MAN1ONBLDFILES:%=$(ROOTONBLDMAN1ONBLD)/%) 74ROOTONBLDABIAUDITFILES= $(ABI_AUDITFILES:%=$(ROOTONBLDETCABI)/%) 75ROOTONBLDEXCEPTFILES= $(EXCEPTFILES:%=$(ROOTONBLDETCEXCEPT)/%) 76 77# Break a chicken-and-egg dependency cycle for the tools build 78SCCSCHECK=@echo would sccscheck 79 80$(ROOTONBLDETCABI)/%: % 81 $(INS.file) 82 83$(ROOTONBLDETCEXCEPT)/%: $(CODEMGR_WS)/exception_lists/% 84 $(INS.file) 85 86$(ROOTONBLDBIN)/%: % 87 $(INS.file) 88 89$(ROOTONBLDBINMACH)/%: % 90 $(INS.file) 91 92$(ROOTONBLDETC)/%: % 93 $(INS.file) 94 95$(ROOTONBLDLIBPERL)/%: % 96 $(INS.file) 97 98$(ROOTONBLDMAN1ONBLD)/%: % 99 $(INS.file) 100 101$(ROOTONBLDENV)/%: % 102 $(INS.file) 103