xref: /illumos-gate/usr/src/Makefile (revision 694c35fa)
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#
21d583b39bSJohn Wren Kennedy
227c478bd9Sstevel@tonic-gate#
2378add226Sjmcp# Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24d583b39bSJohn Wren Kennedy# Copyright (c) 2012 by Delphix. All rights reserved.
2578add226Sjmcp#
26d583b39bSJohn Wren Kennedy
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate# Makefile for system source
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gate# include global definitions
317c478bd9Sstevel@tonic-gateinclude Makefile.master
327c478bd9Sstevel@tonic-gate#
337c478bd9Sstevel@tonic-gate# the Targetdirs file is the AT&T target.dirs file in a makefile format.
347c478bd9Sstevel@tonic-gate# it defines TARGETDIRS and ROOTDIRS.
357c478bd9Sstevel@tonic-gateinclude Targetdirs
367c478bd9Sstevel@tonic-gate
37d583b39bSJohn Wren KennedyCOMMON_SUBDIRS=	uts lib cmd ucblib ucbcmd psm man test
38e3c7c8f8SMark J. Nelsonsparc_SUBDIRS= stand
39e3c7c8f8SMark J. Nelsoni386_SUBDIRS= grub
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gate#
42e3c7c8f8SMark J. Nelson# sparc needs to build stand before psm
437c478bd9Sstevel@tonic-gate#
44e3c7c8f8SMark J. Nelson$(SPARC_BLD)psm: stand
457c478bd9Sstevel@tonic-gate
467c478bd9Sstevel@tonic-gateSUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
477c478bd9Sstevel@tonic-gate
485bbb4db2SGarrett D'AmoreHDRSUBDIRS=	uts head lib cmd
497c478bd9Sstevel@tonic-gate
507c478bd9Sstevel@tonic-gate# UCB headers are bug-for-bug compatible and not checkable against the header
517c478bd9Sstevel@tonic-gate# standards.
527c478bd9Sstevel@tonic-gate#
537c478bd9Sstevel@tonic-gateCHKHDRSUBDIRS=	head uts lib
547c478bd9Sstevel@tonic-gate
5598157a70Sakolb#
5698157a70Sakolb# Headers that can be built in parallel
5798157a70Sakolb#
585bbb4db2SGarrett D'AmorePARALLEL_HEADERS = sysheaders userheaders libheaders cmdheaders
5998157a70Sakolb
6098157a70Sakolb#
6198157a70Sakolb# Directories that can be built in parallel
6298157a70Sakolb#
63c10c16deSRichard LowePARALLEL_DIRS = uts lib man
6498157a70Sakolb
657c478bd9Sstevel@tonic-gate# The check target also causes smf(5) service manifests to be validated.
667c478bd9Sstevel@tonic-gateCHKMFSTSUBDIRS=	cmd
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateMSGSUBDIRS=	cmd ucbcmd lib
697c478bd9Sstevel@tonic-gateDOMAINS= \
707c478bd9Sstevel@tonic-gate	SUNW_OST_ADMIN \
717c478bd9Sstevel@tonic-gate	SUNW_OST_NETRPC \
727c478bd9Sstevel@tonic-gate	SUNW_OST_OSCMD \
737c478bd9Sstevel@tonic-gate	SUNW_OST_OSLIB \
747c478bd9Sstevel@tonic-gate	SUNW_OST_UCBCMD \
757c478bd9Sstevel@tonic-gate	SUNW_OST_ZONEINFO
767c478bd9Sstevel@tonic-gate
777c478bd9Sstevel@tonic-gateMSGDDIRS=       $(DOMAINS:%=$(MSGROOT)/%)
787c478bd9Sstevel@tonic-gateMSGDIRS=        $(MSGROOT) $(MSGDDIRS) $(MSGROOT)/LC_TIME
797c478bd9Sstevel@tonic-gate
80*694c35faSJosef 'Jeff' Sipekall :=			TARGET= all
81*694c35faSJosef 'Jeff' Sipekinstall :=		TARGET= install
82e3c7c8f8SMark J. Nelsoninstall1 :=		TARGET= install
83e3c7c8f8SMark J. Nelsoninstall2 :=		TARGET= install
847c478bd9Sstevel@tonic-gateinstall_h :=		TARGET= install_h
857c478bd9Sstevel@tonic-gateclean :=		TARGET= clean
867c478bd9Sstevel@tonic-gateclobber :=		TARGET= clobber
877c478bd9Sstevel@tonic-gatecheck :=		TARGET= check
887c478bd9Sstevel@tonic-gate
897c478bd9Sstevel@tonic-gate.KEEP_STATE:
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gate#
92e3c7c8f8SMark J. Nelson# Note: install does not cause a build in pkg.  To build packages,
93ead1f93eSLiane Praza#	cd pkg and do a 'make install'
947c478bd9Sstevel@tonic-gate#
95e3c7c8f8SMark J. Nelson
96e3c7c8f8SMark J. Nelsonall: mapfiles closedbins sgs .WAIT $(SUBDIRS) pkg
97e3c7c8f8SMark J. Nelson
985084e753SMark J. Nelson#
995084e753SMark J. Nelson# The _msg build is a two-step process.  First, the _msg dependency
1005084e753SMark J. Nelson# causes recursive makes in $(MSGSUBDIRS), which stages raw message
1015084e753SMark J. Nelson# files in $(ROOT)/catalog.  Second, the action from the install
1025084e753SMark J. Nelson# target rule causes those messages to be post-processed from where
1035084e753SMark J. Nelson# they were staged in $(ROOT)/catalog, and the results placed into the
1045084e753SMark J. Nelson# proto area.
1055084e753SMark J. Nelson#
1065084e753SMark J. Nelson# The stage-licenses target causes the license files needed for
1075084e753SMark J. Nelson# packaging to be pulled from $(SRC) and $(CLOSED) and staged in
1085084e753SMark J. Nelson# $(ROOT)/licenses.
1095084e753SMark J. Nelson#
1105084e753SMark J. Nelsoninstall: install1 install2 _msg stage-licenses
111581cede6SMark J. Nelson	@cd msg; pwd; $(MAKE) _msg
1127c478bd9Sstevel@tonic-gate	@rm -rf "$(ROOT)/catalog"
1137c478bd9Sstevel@tonic-gate
1145084e753SMark J. Nelsonstage-licenses: install2
1155084e753SMark J. Nelson	@cd pkg; pwd; $(MAKE) stage-licenses
1165084e753SMark J. Nelson
117e3c7c8f8SMark J. Nelsoninstall1: mapfiles closedbins sgs
1187c478bd9Sstevel@tonic-gate
119e3c7c8f8SMark J. Nelsoninstall2: install1 $(SUBDIRS)
1207c478bd9Sstevel@tonic-gate
121e3c7c8f8SMark J. Nelson_msg: _msgdirs rootdirs install2 FRC
122e3c7c8f8SMark J. Nelson	@for m in $(MSGSUBDIRS); do \
123e3c7c8f8SMark J. Nelson		cd $$m; pwd; $(MAKE) _msg; cd ..; \
124e3c7c8f8SMark J. Nelson	done
1257c478bd9Sstevel@tonic-gate
126e3c7c8f8SMark J. Nelsonmapfiles: bldtools
127e3c7c8f8SMark J. Nelson	@cd common/mapfiles; pwd; $(MAKE) install
1287c478bd9Sstevel@tonic-gate
129e3c7c8f8SMark J. Nelsonclean clobber: $(SUBDIRS) head pkg
1307c478bd9Sstevel@tonic-gate
131a0ed5030SJason Kingclosedbins: bldtools $(ROOTDIRS) FRC
1325b43ca41Sah	@CLOSED_ROOT="$$ON_CLOSED_BINS/root_$(MACH)$${RELEASE_BUILD+-nd}"; \
1335b43ca41Sah	if [ "$$CLOSED_IS_PRESENT" = no ]; then \
1345b43ca41Sah		if [ ! -d "$$CLOSED_ROOT" ]; then \
135fb9f9b97Skupfer			$(ECHO) "Error: if closed sources are not present," \
136fb9f9b97Skupfer			    "ON_CLOSED_BINS must point to closed binaries."; \
1375b43ca41Sah			$(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \
1385b43ca41Sah			    "present in $$ON_CLOSED_BINS."; \
139fb9f9b97Skupfer			exit 1; \
140fb9f9b97Skupfer		fi; \
1415b43ca41Sah		$(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \
1422ad72058SGarrett D'Amore		(cd $$CLOSED_ROOT; \
1432ad72058SGarrett D'Amore		    $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \
1442ad72058SGarrett D'Amore		    (cd $(ROOT); $(TAR) xBpf -); \
145a0ed5030SJason King		( cd $(ROOT); $(CTFSTRIP) $$(cd $$CLOSED_ROOT; $(FIND) \
146a0ed5030SJason King		    ./kernel ./usr/kernel ./platform/*/kernel -type f -a -perm -u+x | \
147a0ed5030SJason King		    $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) ); \
148fb9f9b97Skupfer	fi
149fb9f9b97Skupfer
15098157a70Sakolb#
151e3c7c8f8SMark J. Nelson# Declare what parts can be built in parallel
15298157a70Sakolb# DUMMY at the end is used in case macro expansion produces an empty string to
15398157a70Sakolb# prevent everything going in parallel
15498157a70Sakolb#
15598157a70Sakolb.PARALLEL: $(PARALLEL_HEADERS) DUMMY
15698157a70Sakolb.PARALLEL: $(PARALLEL_DIRS) DUMMY
15798157a70Sakolb
158ead1f93eSLiane Praza$(SUBDIRS) head pkg: FRC
1597c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
1607c478bd9Sstevel@tonic-gate
1617c478bd9Sstevel@tonic-gate# librpcsvc has a dependency on headers installed by
1627c478bd9Sstevel@tonic-gate# userheaders, hence the .WAIT before libheaders.
1637c478bd9Sstevel@tonic-gatesgs: rootdirs .WAIT sysheaders userheaders .WAIT \
1645bbb4db2SGarrett D'Amore	libheaders cmdheaders
1657c478bd9Sstevel@tonic-gate
1667c478bd9Sstevel@tonic-gate#
167232c6638Srie# Top-level setup target to setup the development environment that includes
168232c6638Srie# headers, tools and generated mapfiles.  For open-only builds (i.e.: source
169232c6638Srie# trees w/o usr/closed), this also depends on the closedbins target (above)
170232c6638Srie# in order to properly seed the proto area.  Note, although the tools are
171232c6638Srie# dependent on a number of constant mapfiles, the tools themselves are
172232c6638Srie# required to build the generated mapfiles.
1737345d6c1Sstevel#
17478add226Sjmcpsetup: closedbins bldtools sgs mapfiles
175232c6638Srie
17678add226Sjmcpbldtools:
1777c478bd9Sstevel@tonic-gate	@cd tools; pwd; $(MAKE) install
1787c478bd9Sstevel@tonic-gate
1797c478bd9Sstevel@tonic-gate# /var/mail/:saved is a special case because of the colon in the name.
1807c478bd9Sstevel@tonic-gate#
1817c478bd9Sstevel@tonic-gaterootdirs: $(ROOTDIRS)
1827c478bd9Sstevel@tonic-gate	$(INS) -d -m 775 $(ROOT)/var/mail/:saved
1837c478bd9Sstevel@tonic-gate
1847c478bd9Sstevel@tonic-gatelint: FRC
1857c478bd9Sstevel@tonic-gate	$(MAKE) -f Makefile.lint
1867c478bd9Sstevel@tonic-gate
1877c478bd9Sstevel@tonic-gate_msgdirs:       $(MSGDIRS)
1887c478bd9Sstevel@tonic-gate
1897c478bd9Sstevel@tonic-gate$(ROOTDIRS) $(MSGDIRS):
1907c478bd9Sstevel@tonic-gate	$(INS.dir)
1917c478bd9Sstevel@tonic-gate
1927c478bd9Sstevel@tonic-gateuserheaders: FRC
1937c478bd9Sstevel@tonic-gate	@cd head; pwd; $(MAKE) install_h
1947c478bd9Sstevel@tonic-gate
19578add226Sjmcplibheaders: bldtools
1967c478bd9Sstevel@tonic-gate	@cd lib; pwd; $(MAKE) install_h
1977c478bd9Sstevel@tonic-gate
1987c478bd9Sstevel@tonic-gatesysheaders: FRC
1997c478bd9Sstevel@tonic-gate	@cd uts; pwd; $(MAKE) install_h
2007c478bd9Sstevel@tonic-gate
2017c478bd9Sstevel@tonic-gatecmdheaders: FRC
2027c478bd9Sstevel@tonic-gate	@cd cmd/fm; pwd; $(MAKE) install_h
2037c478bd9Sstevel@tonic-gate	@cd cmd/mdb; pwd; $(MAKE) install_h
2047c478bd9Sstevel@tonic-gate
2057c478bd9Sstevel@tonic-gatecheck:	$(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS)
2067c478bd9Sstevel@tonic-gate
2077c478bd9Sstevel@tonic-gate#
2087c478bd9Sstevel@tonic-gate# Cross-reference customization: skip all of the subdirectories that
2097c478bd9Sstevel@tonic-gate# don't contain actual source code.
2107c478bd9Sstevel@tonic-gate#
211fb9f9b97Skupfer$(CLOSED_BUILD)XRDIRS += ../closed
212*694c35faSJosef 'Jeff' SipekXRPRUNE = pkg prototypes
2137c478bd9Sstevel@tonic-gateXRINCDIRS = uts/common head ucbhead
214fb9f9b97Skupfer$(CLOSED_BUILD)XRINCDIRS = uts/common ../closed/uts/common head ucbhead
2157c478bd9Sstevel@tonic-gate
2167c478bd9Sstevel@tonic-gatecscope.out tags: FRC
2177c478bd9Sstevel@tonic-gate	$(XREF) -f -x $@
2187c478bd9Sstevel@tonic-gate
2197c478bd9Sstevel@tonic-gateFRC:
2207c478bd9Sstevel@tonic-gate
2217c478bd9Sstevel@tonic-gate#
2227c478bd9Sstevel@tonic-gate# Targets for reporting compiler versions; nightly uses these.
2237c478bd9Sstevel@tonic-gate#
2247c478bd9Sstevel@tonic-gate
2257c478bd9Sstevel@tonic-gatecc-version:
2261912d2c4Swesolows	@if $($(MACH)_CC) -_versions >/dev/null 2>/dev/null; then \
227010b217aSwesolows		$(ECHO) 32-bit compiler;			\
228bf40377cSwesolows		$(ECHO) $($(MACH)_CC);				\
2291912d2c4Swesolows		$($(MACH)_CC) -_versions 2>&1 |			\
2301912d2c4Swesolows		    $(EGREP) '^(cw|cc|gcc|primary|shadow)';	\
231bf40377cSwesolows	else							\
232bf40377cSwesolows		__COMPILER=`$($(MACH)_CC) -_compiler 2>/dev/null || $(TRUE)`;\
233bf40377cSwesolows		if [ -z "$$__COMPILER" ]; then			\
234010b217aSwesolows			$(ECHO) No 32-bit compiler found;	\
235bf40377cSwesolows			exit 1;					\
236bf40377cSwesolows		else						\
237010b217aSwesolows			$(ECHO) 32-bit compiler;		\
238bf40377cSwesolows			$(ECHO) $($(MACH)_CC);			\
239bf40377cSwesolows			$(ECHO) $$__COMPILER;			\
240bf40377cSwesolows			$($(MACH)_CC) -V 2>&1 | head -1;	\
241bf40377cSwesolows		fi;						\
2427c478bd9Sstevel@tonic-gate	fi
2437c478bd9Sstevel@tonic-gate
2447c478bd9Sstevel@tonic-gatecc64-version:
2451912d2c4Swesolows	@if $($(MACH64)_CC) -_versions >/dev/null 2>/dev/null; then \
246010b217aSwesolows		$(ECHO) 64-bit compiler;			\
247bf40377cSwesolows		$(ECHO) $($(MACH64)_CC);			\
2481912d2c4Swesolows		$($(MACH64)_CC) -_versions 2>&1 |		\
2491912d2c4Swesolows		    $(EGREP) '^(cw|cc|gcc|primary|shadow)';	\
250bf40377cSwesolows	else							\
251bf40377cSwesolows		__COMPILER=`$($(MACH64)_CC) -_compiler 2>/dev/null || $(TRUE)`;\
252bf40377cSwesolows		if [ -z "$$__COMPILER" ]; then			\
253bf40377cSwesolows			$(ECHO) No 64-bit compiler found;	\
254bf40377cSwesolows			exit 1;					\
255bf40377cSwesolows		else						\
256010b217aSwesolows			$(ECHO) 64-bit compiler;		\
257bf40377cSwesolows			$(ECHO) $($(MACH64)_CC);		\
258bf40377cSwesolows			$(ECHO) $$__COMPILER;			\
259bf40377cSwesolows			$($(MACH64)_CC) -V 2>&1 | head -1;	\
260bf40377cSwesolows		fi;						\
2617c478bd9Sstevel@tonic-gate	fi
2627c478bd9Sstevel@tonic-gate
2637c478bd9Sstevel@tonic-gatejava-version:
2647c478bd9Sstevel@tonic-gate	@if [ -x "$(JAVAC)" ]; then			\
2657c478bd9Sstevel@tonic-gate		$(ECHO) $(JAVAC);			\
2667c478bd9Sstevel@tonic-gate		$(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1;	\
2677c478bd9Sstevel@tonic-gate	else						\
2687c478bd9Sstevel@tonic-gate		$(ECHO) No Java compiler found;		\
2697c478bd9Sstevel@tonic-gate		exit 1;					\
2707c478bd9Sstevel@tonic-gate	fi
271