xref: /illumos-gate/usr/src/Makefile (revision e0416ec863e2a026ac6fe1f35033f0904f399bd7)
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.
2595c635efSGarrett D'Amore# Copyright 2014 Garrett D'Amore <garrett@damore.org>
262e27c225SDan McDonald# Copyright 2015 OmniTI Computer Consulting, Inc. All rights reserved.
27199767f8SToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com>
28aa9ef484SJohn Levon# Copyright 2018 Joyent, Inc.
29856f710cSAndy Fiddaman# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
3078add226Sjmcp#
31d583b39bSJohn Wren Kennedy
327c478bd9Sstevel@tonic-gate#
337c478bd9Sstevel@tonic-gate# Makefile for system source
347c478bd9Sstevel@tonic-gate#
357c478bd9Sstevel@tonic-gate# include global definitions
367c478bd9Sstevel@tonic-gateinclude Makefile.master
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gate# the Targetdirs file is the AT&T target.dirs file in a makefile format.
397c478bd9Sstevel@tonic-gate# it defines TARGETDIRS and ROOTDIRS.
407c478bd9Sstevel@tonic-gateinclude Targetdirs
417c478bd9Sstevel@tonic-gate
42622d9a34SRichard LoweCOMMON_SUBDIRS=	data uts lib cmd ucblib ucbcmd man test
43622d9a34SRichard Lowesparc_SUBDIRS= psm stand
44199767f8SToomas Soomei386_SUBDIRS= grub boot
457c478bd9Sstevel@tonic-gate
467c478bd9Sstevel@tonic-gate#
47e3c7c8f8SMark J. Nelson# sparc needs to build stand before psm
487c478bd9Sstevel@tonic-gate#
49e3c7c8f8SMark J. Nelson$(SPARC_BLD)psm: stand
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gateSUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
527c478bd9Sstevel@tonic-gate
535bbb4db2SGarrett D'AmoreHDRSUBDIRS=	uts head lib cmd
547c478bd9Sstevel@tonic-gate
557c478bd9Sstevel@tonic-gate# UCB headers are bug-for-bug compatible and not checkable against the header
567c478bd9Sstevel@tonic-gate# standards.
577c478bd9Sstevel@tonic-gate#
587c478bd9Sstevel@tonic-gateCHKHDRSUBDIRS=	head uts lib
597c478bd9Sstevel@tonic-gate
6098157a70Sakolb#
6198157a70Sakolb# Headers that can be built in parallel
6298157a70Sakolb#
635bbb4db2SGarrett D'AmorePARALLEL_HEADERS = sysheaders userheaders libheaders cmdheaders
6498157a70Sakolb
6598157a70Sakolb#
6698157a70Sakolb# Directories that can be built in parallel
6798157a70Sakolb#
68503609a9SYuri PankovPARALLEL_DIRS = data uts lib man
6998157a70Sakolb
70bbf21555SRichard Lowe# The check target also causes smf(7) service manifests to be validated.
717c478bd9Sstevel@tonic-gateCHKMFSTSUBDIRS=	cmd
727c478bd9Sstevel@tonic-gate
7395c635efSGarrett D'Amore# And man page formats
7495c635efSGarrett D'AmoreCHKMANSUBDIRS = man
7595c635efSGarrett D'Amore
76*e0416ec8SGordon Ross# And test runfiles
77*e0416ec8SGordon RossCHKTESTSUBDIRS = test
78*e0416ec8SGordon Ross
79503609a9SYuri PankovMSGSUBDIRS=	cmd ucbcmd lib data
807c478bd9Sstevel@tonic-gate
81694c35faSJosef 'Jeff' Sipekall :=			TARGET= all
82694c35faSJosef 'Jeff' Sipekinstall :=		TARGET= install
83e3c7c8f8SMark J. Nelsoninstall1 :=		TARGET= install
84e3c7c8f8SMark J. Nelsoninstall2 :=		TARGET= install
857c478bd9Sstevel@tonic-gateinstall_h :=		TARGET= install_h
867c478bd9Sstevel@tonic-gateclean :=		TARGET= clean
877c478bd9Sstevel@tonic-gateclobber :=		TARGET= clobber
887c478bd9Sstevel@tonic-gatecheck :=		TARGET= check
897c478bd9Sstevel@tonic-gate
907c478bd9Sstevel@tonic-gate.KEEP_STATE:
917c478bd9Sstevel@tonic-gate
927c478bd9Sstevel@tonic-gate#
93e3c7c8f8SMark J. Nelson# Note: install does not cause a build in pkg.  To build packages,
94ead1f93eSLiane Praza#	cd pkg and do a 'make install'
957c478bd9Sstevel@tonic-gate#
96e3c7c8f8SMark J. Nelson
97e3c7c8f8SMark J. Nelsonall: mapfiles closedbins sgs .WAIT $(SUBDIRS) pkg
98e3c7c8f8SMark J. Nelson
995084e753SMark J. Nelson#
1005084e753SMark J. Nelson# The _msg build is a two-step process.  First, the _msg dependency
1015084e753SMark J. Nelson# causes recursive makes in $(MSGSUBDIRS), which stages raw message
1025084e753SMark J. Nelson# files in $(ROOT)/catalog.  Second, the action from the install
1035084e753SMark J. Nelson# target rule causes those messages to be post-processed from where
1045084e753SMark J. Nelson# they were staged in $(ROOT)/catalog, and the results placed into the
1055084e753SMark J. Nelson# proto area.
1065084e753SMark J. Nelson#
1075084e753SMark J. Nelson# The stage-licenses target causes the license files needed for
1085084e753SMark J. Nelson# packaging to be pulled from $(SRC) and $(CLOSED) and staged in
1095084e753SMark J. Nelson# $(ROOT)/licenses.
1105084e753SMark J. Nelson#
1115084e753SMark J. Nelsoninstall: install1 install2 _msg stage-licenses
112581cede6SMark J. Nelson	@cd msg; pwd; $(MAKE) _msg
1137c478bd9Sstevel@tonic-gate	@rm -rf "$(ROOT)/catalog"
1147c478bd9Sstevel@tonic-gate
1155084e753SMark J. Nelsonstage-licenses: install2
1165084e753SMark J. Nelson	@cd pkg; pwd; $(MAKE) stage-licenses
1175084e753SMark J. Nelson
118e3c7c8f8SMark J. Nelsoninstall1: mapfiles closedbins sgs
119e3c7c8f8SMark J. Nelson
120f15a6fdeSJason Kinginstall2: install1 .WAIT $(SUBDIRS)
121e3c7c8f8SMark J. Nelson
1223a51e5c0SRichard Lowe_msg: rootdirs FRC
123e3c7c8f8SMark J. Nelson	@for m in $(MSGSUBDIRS); do \
124e3c7c8f8SMark J. Nelson		cd $$m; pwd; $(MAKE) _msg; cd ..; \
125e3c7c8f8SMark J. Nelson	done
126e3c7c8f8SMark J. Nelson
127232c6638Sriemapfiles: bldtools
12824da5b34Srie	@cd common/mapfiles; pwd; $(MAKE) install
12924da5b34Srie
130b6805bf7SGordon Rossclean: $(SUBDIRS) head pkg
131b6805bf7SGordon Rossclobber: $(SUBDIRS) head pkg clobber_local
132b6805bf7SGordon Rossclobber_local:
133b6805bf7SGordon Ross	@cd tools; pwd; $(MAKE) clobber
134b6805bf7SGordon Ross	@cd common/mapfiles; pwd; $(MAKE) clobber
135b6805bf7SGordon Ross	@cd msg; pwd; $(MAKE) clobber
1367c478bd9Sstevel@tonic-gate
1372e27c225SDan McDonald# If the tarballs are included inside ON_CLOSED_BINS, use those to extract and
1382e27c225SDan McDonald# preserve the permissions (in case a distro ships them).
1392e27c225SDan McDonald
140a0ed5030SJason Kingclosedbins: bldtools $(ROOTDIRS) FRC
1415b43ca41Sah89892	@CLOSED_ROOT="$$ON_CLOSED_BINS/root_$(MACH)$${RELEASE_BUILD+-nd}"; \
1422e27c225SDan McDonald	if [ -f "$$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2" ]; then \
1432e27c225SDan McDonald		$(ECHO) "Extracting tarball $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2"; \
1442e27c225SDan McDonald		(cd $(CODEMGR_WS); \
1452e27c225SDan McDonald		   $(TAR) xjpf $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2); \
1462e27c225SDan McDonald		CLOSED_ROOT="$(CODEMGR_WS)/closed/root_$(MACH)$${RELEASE_BUILD+-nd}"; \
1472e27c225SDan McDonald	fi; \
1485b43ca41Sah89892	if [ ! -d "$$CLOSED_ROOT" ]; then \
149c0e7977aSJosef 'Jeff' Sipek		$(ECHO) "Error: ON_CLOSED_BINS must point to closed" \
150c0e7977aSJosef 'Jeff' Sipek		    "binaries."; \
1515b43ca41Sah89892		$(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \
1525b43ca41Sah89892		    "present in $$ON_CLOSED_BINS."; \
153fb9f9b97Skupfer		exit 1; \
154fb9f9b97Skupfer	fi; \
1555b43ca41Sah89892	$(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \
1562ad72058SGarrett D'Amore	(cd $$CLOSED_ROOT; \
1572ad72058SGarrett D'Amore	    $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \
1582ad72058SGarrett D'Amore	    (cd $(ROOT); $(TAR) xBpf -); \
15905c0ef07SKlaus Ziegler	$(CHMOD) 0400 $(ROOT)/etc/security/tsol/label_encodings; \
160a0ed5030SJason King	( cd $(ROOT); $(CTFSTRIP) $$(cd $$CLOSED_ROOT; $(FIND) \
161a0ed5030SJason King	    ./kernel ./usr/kernel ./platform/*/kernel -type f -a -perm -u+x | \
162c0e7977aSJosef 'Jeff' Sipek	    $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) )
163fb9f9b97Skupfer
16498157a70Sakolb#
165e3c7c8f8SMark J. Nelson# Declare what parts can be built in parallel
16698157a70Sakolb# DUMMY at the end is used in case macro expansion produces an empty string to
16798157a70Sakolb# prevent everything going in parallel
16898157a70Sakolb#
16998157a70Sakolb.PARALLEL: $(PARALLEL_HEADERS) DUMMY
17098157a70Sakolb.PARALLEL: $(PARALLEL_DIRS) DUMMY
17198157a70Sakolb
172ead1f93eSLiane Praza$(SUBDIRS) head pkg: FRC
1737c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
1747c478bd9Sstevel@tonic-gate
1757c478bd9Sstevel@tonic-gate# librpcsvc has a dependency on headers installed by
1767c478bd9Sstevel@tonic-gate# userheaders, hence the .WAIT before libheaders.
1777c478bd9Sstevel@tonic-gatesgs: rootdirs .WAIT sysheaders userheaders .WAIT \
1785bbb4db2SGarrett D'Amore	libheaders cmdheaders
1797c478bd9Sstevel@tonic-gate
1807c478bd9Sstevel@tonic-gate#
181232c6638Srie# Top-level setup target to setup the development environment that includes
182232c6638Srie# headers, tools and generated mapfiles.  For open-only builds (i.e.: source
183232c6638Srie# trees w/o usr/closed), this also depends on the closedbins target (above)
184232c6638Srie# in order to properly seed the proto area.  Note, although the tools are
185232c6638Srie# dependent on a number of constant mapfiles, the tools themselves are
186232c6638Srie# required to build the generated mapfiles.
1877345d6c1Sstevel#
18878add226Sjmcpsetup: closedbins bldtools sgs mapfiles
189232c6638Srie
1906d3b6de8SAndy Fiddaman#
1916d3b6de8SAndy Fiddaman# Always build tools as non-DEBUG.
1926d3b6de8SAndy Fiddaman# When nightly launches a build it first builds non-DEBUG tools and then
1936d3b6de8SAndy Fiddaman# configures the environment so that these tools are used for building
1946d3b6de8SAndy Fiddaman# subsequently. If a recursive build from usr/src then builds DEBUG tools,
1956d3b6de8SAndy Fiddaman# the tools will be rebuilt using themselves resulting in a race condition
1966d3b6de8SAndy Fiddaman# that can cause the build to fail - see https://www.illumos.org/issues/10462
1976d3b6de8SAndy Fiddaman# for more details.
1986d3b6de8SAndy Fiddaman# A manual build in usr/src/tools in a DEBUG bldenv will still do a DEBUG
1996d3b6de8SAndy Fiddaman# tools build.
2006d3b6de8SAndy Fiddaman#
20178add226Sjmcpbldtools:
2026d3b6de8SAndy Fiddaman	@cd tools; pwd; $(MAKE) RELEASE_BUILD= install
2037c478bd9Sstevel@tonic-gate
2047c478bd9Sstevel@tonic-gate# /var/mail/:saved is a special case because of the colon in the name.
2057c478bd9Sstevel@tonic-gate#
2067c478bd9Sstevel@tonic-gaterootdirs: $(ROOTDIRS)
2077c478bd9Sstevel@tonic-gate	$(INS) -d -m 775 $(ROOT)/var/mail/:saved
2087c478bd9Sstevel@tonic-gate
2093a51e5c0SRichard Lowe$(ROOTDIRS):
2107c478bd9Sstevel@tonic-gate	$(INS.dir)
2117c478bd9Sstevel@tonic-gate
2127c478bd9Sstevel@tonic-gateuserheaders: FRC
2137c478bd9Sstevel@tonic-gate	@cd head; pwd; $(MAKE) install_h
2147c478bd9Sstevel@tonic-gate
21578add226Sjmcplibheaders: bldtools
2167c478bd9Sstevel@tonic-gate	@cd lib; pwd; $(MAKE) install_h
2177c478bd9Sstevel@tonic-gate
2187c478bd9Sstevel@tonic-gatesysheaders: FRC
2197c478bd9Sstevel@tonic-gate	@cd uts; pwd; $(MAKE) install_h
2207c478bd9Sstevel@tonic-gate
2217c478bd9Sstevel@tonic-gatecmdheaders: FRC
2222dc323c7SPatrick Mooney	@cd cmd/devfsadm; pwd; $(MAKE) install_h
2237c478bd9Sstevel@tonic-gate	@cd cmd/fm; pwd; $(MAKE) install_h
2247c478bd9Sstevel@tonic-gate	@cd cmd/mdb; pwd; $(MAKE) install_h
2257c478bd9Sstevel@tonic-gate
2260fb96ba1SBill SommerfeldFRC:
2270fb96ba1SBill Sommerfeld
228*e0416ec8SGordon Rosscheck:	$(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS) $(CHKMANSUBDIRS) $(CHKTESTSUBDIRS)
2297c478bd9Sstevel@tonic-gate
2307c478bd9Sstevel@tonic-gate#
2317c478bd9Sstevel@tonic-gate# Cross-reference customization: skip all of the subdirectories that
2327c478bd9Sstevel@tonic-gate# don't contain actual source code.
2337c478bd9Sstevel@tonic-gate#
234694c35faSJosef 'Jeff' SipekXRPRUNE = pkg prototypes
2357c478bd9Sstevel@tonic-gateXRINCDIRS = uts/common head ucbhead
2367c478bd9Sstevel@tonic-gate
2370fb96ba1SBill Sommerfeldinclude Makefile.xref
2387c478bd9Sstevel@tonic-gate
2390fb96ba1SBill SommerfeldXREFFLAGS = -f -x
2407c478bd9Sstevel@tonic-gate
241aa9ef484SJohn Levon# used by nightly
2427c478bd9Sstevel@tonic-gatecc-version:
243aa9ef484SJohn Levon	@$(CW) --versions $(CW_CC_COMPILERS) 2>&1
2447c478bd9Sstevel@tonic-gate
245aa9ef484SJohn Levon# for older nightlies
2467c478bd9Sstevel@tonic-gatecc64-version:
2477c478bd9Sstevel@tonic-gate
2487c478bd9Sstevel@tonic-gatejava-version:
2497c478bd9Sstevel@tonic-gate	@if [ -x "$(JAVAC)" ]; then			\
2507c478bd9Sstevel@tonic-gate		$(ECHO) $(JAVAC);			\
2517c478bd9Sstevel@tonic-gate		$(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1;	\
2527c478bd9Sstevel@tonic-gate	else						\
2537c478bd9Sstevel@tonic-gate		$(ECHO) No Java compiler found;		\
2547c478bd9Sstevel@tonic-gate		exit 1;					\
2557c478bd9Sstevel@tonic-gate	fi
256300fdee2SAndy Fiddaman
257300fdee2SAndy Fiddamanopenssl-version:
258300fdee2SAndy Fiddaman	@if [ -x "$(OPENSSL)" ]; then				\
259300fdee2SAndy Fiddaman		$(ECHO) $(OPENSSL);				\
260300fdee2SAndy Fiddaman		$(OPENSSL) version;				\
261300fdee2SAndy Fiddaman		$(OPENSSL) version -f |				\
262300fdee2SAndy Fiddaman		    $(SED) -n '/_API/{s/.*_API/    API/;s/ -.*//;p;}'; \
263300fdee2SAndy Fiddaman	else							\
264300fdee2SAndy Fiddaman		$(ECHO) No OpenSSL utility found;		\
265300fdee2SAndy Fiddaman	fi
266