xref: /illumos-gate/usr/src/tools/Makefile (revision 6066d16efa0b0247d0ea7e382214e7d19b0681a9)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5fb9f9b97Skupfer# Common Development and Distribution License (the "License").
6fb9f9b97Skupfer# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
212e02daeeSRainer Orth
227c478bd9Sstevel@tonic-gate#
2387ab3622SRichard Lowe# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate#
257c478bd9Sstevel@tonic-gate
267c478bd9Sstevel@tonic-gateinclude ../Makefile.master
277c478bd9Sstevel@tonic-gate
287c478bd9Sstevel@tonic-gate# Bootstrap problem --
297c478bd9Sstevel@tonic-gate# 'cw' must be built before anything else can be built.
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gateBOOT_SUBDIRS= \
327c478bd9Sstevel@tonic-gate	cw
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gateCOMMON_SUBDIRS= \
357c478bd9Sstevel@tonic-gate	codereview \
3623259b79Srotondo	codesign \
377c478bd9Sstevel@tonic-gate	cscope-fast \
387c478bd9Sstevel@tonic-gate	ctf \
397c478bd9Sstevel@tonic-gate	depcheck \
407c478bd9Sstevel@tonic-gate	env \
417c478bd9Sstevel@tonic-gate	findunref \
42d0e51869Samw	ndrgen \
43cdf0c1d5Smjnelson	onbld \
447c478bd9Sstevel@tonic-gate	pmodes \
457c478bd9Sstevel@tonic-gate	gk \
467c478bd9Sstevel@tonic-gate	install.bin \
4734c98957Smeem	lintdump \
487c478bd9Sstevel@tonic-gate	protocmp \
497c478bd9Sstevel@tonic-gate	protolist \
507c478bd9Sstevel@tonic-gate	scripts
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate#
537c478bd9Sstevel@tonic-gate#  special versions of commands for use only in build
547c478bd9Sstevel@tonic-gate#
55df8bdeb3SjohnzUNSHIPPED_SUBDIRS = \
566ea3c060SGarrett D'Amore	elfsign
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gatesparc_SUBDIRS= \
59b31b5de1SJerry Gilliam	chk4ubin \
607c478bd9Sstevel@tonic-gate	stabs \
617c478bd9Sstevel@tonic-gate	tokenize
627c478bd9Sstevel@tonic-gate
637c478bd9Sstevel@tonic-gatei386_SUBDIRS=		\
64ae115bc7Smrj	aw		\
65ae115bc7Smrj	elfextract	\
66ae115bc7Smrj	mbh_patch
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateLINTSUBDIRS= \
697c478bd9Sstevel@tonic-gate	codereview \
707c478bd9Sstevel@tonic-gate	ctf \
717c478bd9Sstevel@tonic-gate	cw \
727c478bd9Sstevel@tonic-gate	findunref \
7334c98957Smeem	lintdump \
74d0e51869Samw	ndrgen \
757c478bd9Sstevel@tonic-gate	protocmp \
767c478bd9Sstevel@tonic-gate	protolist
777c478bd9Sstevel@tonic-gate
78df8bdeb3SjohnzSUBDIRS= \
79df8bdeb3Sjohnz	$($(MACH)_SUBDIRS) \
80df8bdeb3Sjohnz	$(COMMON_SUBDIRS) \
81df8bdeb3Sjohnz	$(UNSHIPPED_SUBDIRS)
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gateinclude Makefile.tools
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gateROOTDIRS= \
862e02daeeSRainer Orth	$(ROOTOPT) \
877c478bd9Sstevel@tonic-gate	$(ROOTONBLD) \
887c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/bin \
897c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/bin/$(MACH) \
907c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/lib \
917c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/lib/$(MACH) \
9275ce41a5SAli Bahrami	$(ROOTONBLD)/lib/perl \
9387ab3622SRichard Lowe	$(ROOTONBLD)/lib/python2.6 \
9487ab3622SRichard Lowe	$(ROOTONBLD)/lib/python2.6/onbld \
9587ab3622SRichard Lowe	$(ROOTONBLD)/lib/python2.6/onbld/Checks \
9687ab3622SRichard Lowe	$(ROOTONBLD)/lib/python2.6/onbld/hgext \
9787ab3622SRichard Lowe	$(ROOTONBLD)/lib/python2.6/onbld/Scm \
987c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/env \
997c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/etc \
10075ce41a5SAli Bahrami	$(ROOTONBLD)/etc/exception_lists \
1017c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/gk \
1027c478bd9Sstevel@tonic-gate	$(ROOTONBLD)/man \
103a970c705SYuri Pankov	$(ROOTONBLD)/man/man1
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gateall :=		TARGET= install
1067c478bd9Sstevel@tonic-gateinstall :=	TARGET= install
1077c478bd9Sstevel@tonic-gateclean :=	TARGET= clean
1087c478bd9Sstevel@tonic-gateclobber :=	TARGET= clobber
1097c478bd9Sstevel@tonic-gatelint :=		TARGET= lint
1107c478bd9Sstevel@tonic-gate_msg :=		TARGET= _msg
1117c478bd9Sstevel@tonic-gate
1127c478bd9Sstevel@tonic-gate.KEEP_STATE:
1137c478bd9Sstevel@tonic-gate
114ead1f93eSLiane Praza#
115ead1f93eSLiane Praza# Only create directories in the tools proto area when doing an actual
116ead1f93eSLiane Praza# build, not a clean or clobber.
117ead1f93eSLiane Praza#
118ead1f93eSLiane PrazaDOROOTDIRS= $(ROOTDIRS)
119ead1f93eSLiane Prazaclobber:= DOROOTDIRS=
120ead1f93eSLiane Prazaclean:= DOROOTDIRS=
121ead1f93eSLiane Praza
12298157a70Sakolball install: $(SUBDIRS)
1237c478bd9Sstevel@tonic-gate
124df8bdeb3Sjohnzclean: $(SUBDIRS)
1257c478bd9Sstevel@tonic-gate
126df8bdeb3Sjohnzclobber: $(SUBDIRS)
1277c478bd9Sstevel@tonic-gate	$(RM) -rf $(TOOLS_PROTO)
1287c478bd9Sstevel@tonic-gate
1297c478bd9Sstevel@tonic-gatelint: $(LINTSUBDIRS)
1307c478bd9Sstevel@tonic-gate
1317c478bd9Sstevel@tonic-gate_msg: $(MSGSUBDIRS)
1327c478bd9Sstevel@tonic-gate
133ead1f93eSLiane Praza.PARALLEL: $(SUBDIRS) $(CLOSED_SUBDIRS)
13498157a70Sakolb
13503113b45Sakolb$(SUBDIRS) $(CLOSED_SUBDIRS): $(BOOT_SUBDIRS)
13603113b45Sakolb
13787ab3622SRichard Lowe$(BOOT_SUBDIRS) $(SUBDIRS): $$(DOROOTDIRS) $(ROOTONBLDLIBPY) FRC
1387c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
1397c478bd9Sstevel@tonic-gate
1407c478bd9Sstevel@tonic-gate$(ROOTDIRS):
1417c478bd9Sstevel@tonic-gate	$(INS.dir)
142ead1f93eSLiane Praza
14387ab3622SRichard Lowe$(ROOTONBLDLIBPY): $(ROOTDIRS)
144*6066d16eSPiotr Jasiukajtis	$(RM) -r $@; $(SYMLINK) python2.6 $@
14587ab3622SRichard Lowe
146ead1f93eSLiane PrazaFRC:
147