xref: /illumos-gate/usr/src/tools/Makefile.tools (revision 7014882c6a3672fd0e5d60200af8643ae53c5928)
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)
39ROOTONBLDLIBPERL=	$(ROOTONBLD)/lib/perl
40ROOTONBLDLIBPY=		$(ROOTONBLD)/lib/python
41ROOTONBLDLIBPY_24=	$(ROOTONBLD)/lib/python2.4
42ROOTONBLDLIBPY_26=	$(ROOTONBLD)/lib/python2.6
43ROOTONBLDENV=		$(ROOTONBLD)/env
44ROOTONBLDGK=		$(ROOTONBLD)/gk
45ROOTONBLDMAN=		$(ROOTONBLD)/man
46ROOTONBLDMAN1=		$(ROOTONBLD)/man/man1
47ROOTONBLDETCABI=	$(ROOTONBLD)/etc/abi
48ROOTONBLDETCEXCEPT=	$(ROOTONBLD)/etc/exception_lists
49
50CPPFLAGS=		-D_TS_ERRNO
51ELFSIGN_O=		$(TRUE)
52LDLIBS=
53LDFLAGS=		$(MAPFILE.NES:%=-M%) $(MAPFILE.NED:%=-M%) \
54			    $(MAPFILE.PGA:%=-M%)
55
56ROOTONBLDPROG=		$(PROG:%=$(ROOTONBLDBIN)/%)
57ROOTONBLDMACHPROG=	$(PROG:%=$(ROOTONBLDBINMACH)/%)
58ROOTONBLDSHFILES=	$(SHFILES:%=$(ROOTONBLDBIN)/%)
59ROOTONBLDMAKEFILES=	$(MAKEFILES:%=$(ROOTONBLDBIN)/%)
60ROOTONBLDMACHSHFILES=	$(SHFILES:%=$(ROOTONBLDBINMACH)/%)
61ROOTONBLDMACHBINARIES=	$(BINARIES:%=$(ROOTONBLDBINMACH)/%)
62ROOTONBLDETCFILES=	$(ETCFILES:%=$(ROOTONBLDETC)/%)
63ROOTONBLDENVFILES=	$(ENVFILES:%=$(ROOTONBLDENV)/%)
64ROOTONBLDGKFILES=	$(GKFILES:%=$(ROOTONBLDGK)/.%)
65ROOTONBLDGKSHFILES=	$(SHFILES:%=$(ROOTONBLDGK)/%)
66ROOTONBLDPERLFILES=	$(PERLFILES:%=$(ROOTONBLDBIN)/%)
67ROOTONBLDPERLMODULES=	$(PERLMODULES:%=$(ROOTONBLDLIBPERL)/%)
68ROOTONBLDPYFILES=	$(PYFILES:%=$(ROOTONBLDBIN)/%)
69ROOTONBLDMAN1FILES=	$(MAN1FILES:%=$(ROOTONBLDMAN1)/%)
70ROOTONBLDABIAUDITFILES=	$(ABI_AUDITFILES:%=$(ROOTONBLDETCABI)/%)
71ROOTONBLDEXCEPTFILES=	$(EXCEPTFILES:%=$(ROOTONBLDETCEXCEPT)/%)
72
73# Break a chicken-and-egg dependency cycle for the tools build
74SCCSCHECK=@echo would sccscheck
75
76$(ROOTONBLDETCABI)/%: %
77	$(INS.file)
78
79$(ROOTONBLDETCEXCEPT)/%: $(CODEMGR_WS)/exception_lists/%
80	$(INS.file)
81
82$(ROOTONBLDBIN)/%: %
83	$(INS.file)
84
85$(ROOTONBLDBINMACH)/%: %
86	$(INS.file)
87
88$(ROOTONBLDETC)/%: %
89	$(INS.file)
90
91$(ROOTONBLDLIBPERL)/%: %
92	$(INS.file)
93
94$(ROOTONBLDMAN1)/%: %
95	$(INS.file)
96
97$(ROOTONBLDENV)/%: %
98	$(INS.file)
99
100$(ROOTONBLDGK)/.%: %
101	$(INS.rename)
102
103$(ROOTONBLDGK)/%: %
104	$(INS.file)
105