xref: /titanic_52/usr/src/Makefile (revision 2e27c225839ca5af7c7b52f72b17676fd2f78cdb)
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>
26*2e27c225SDan McDonald# Copyright 2015 OmniTI Computer Consulting, Inc. All rights reserved.
2778add226Sjmcp#
28d583b39bSJohn Wren Kennedy
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gate# Makefile for system source
317c478bd9Sstevel@tonic-gate#
327c478bd9Sstevel@tonic-gate# include global definitions
337c478bd9Sstevel@tonic-gateinclude Makefile.master
347c478bd9Sstevel@tonic-gate#
357c478bd9Sstevel@tonic-gate# the Targetdirs file is the AT&T target.dirs file in a makefile format.
367c478bd9Sstevel@tonic-gate# it defines TARGETDIRS and ROOTDIRS.
377c478bd9Sstevel@tonic-gateinclude Targetdirs
387c478bd9Sstevel@tonic-gate
39d583b39bSJohn Wren KennedyCOMMON_SUBDIRS=	uts lib cmd ucblib ucbcmd psm man test
40e3c7c8f8SMark J. Nelsonsparc_SUBDIRS= stand
41e3c7c8f8SMark J. Nelsoni386_SUBDIRS= grub
427c478bd9Sstevel@tonic-gate
437c478bd9Sstevel@tonic-gate#
44e3c7c8f8SMark J. Nelson# sparc needs to build stand before psm
457c478bd9Sstevel@tonic-gate#
46e3c7c8f8SMark J. Nelson$(SPARC_BLD)psm: stand
477c478bd9Sstevel@tonic-gate
487c478bd9Sstevel@tonic-gateSUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
497c478bd9Sstevel@tonic-gate
505bbb4db2SGarrett D'AmoreHDRSUBDIRS=	uts head lib cmd
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate# UCB headers are bug-for-bug compatible and not checkable against the header
537c478bd9Sstevel@tonic-gate# standards.
547c478bd9Sstevel@tonic-gate#
557c478bd9Sstevel@tonic-gateCHKHDRSUBDIRS=	head uts lib
567c478bd9Sstevel@tonic-gate
5798157a70Sakolb#
5898157a70Sakolb# Headers that can be built in parallel
5998157a70Sakolb#
605bbb4db2SGarrett D'AmorePARALLEL_HEADERS = sysheaders userheaders libheaders cmdheaders
6198157a70Sakolb
6298157a70Sakolb#
6398157a70Sakolb# Directories that can be built in parallel
6498157a70Sakolb#
65c10c16deSRichard LowePARALLEL_DIRS = uts lib man
6698157a70Sakolb
677c478bd9Sstevel@tonic-gate# The check target also causes smf(5) service manifests to be validated.
687c478bd9Sstevel@tonic-gateCHKMFSTSUBDIRS=	cmd
697c478bd9Sstevel@tonic-gate
7095c635efSGarrett D'Amore# And man page formats
7195c635efSGarrett D'AmoreCHKMANSUBDIRS = man
7295c635efSGarrett D'Amore
737c478bd9Sstevel@tonic-gateMSGSUBDIRS=	cmd ucbcmd lib
747c478bd9Sstevel@tonic-gateDOMAINS= \
757c478bd9Sstevel@tonic-gate	SUNW_OST_ADMIN \
767c478bd9Sstevel@tonic-gate	SUNW_OST_NETRPC \
777c478bd9Sstevel@tonic-gate	SUNW_OST_OSCMD \
787c478bd9Sstevel@tonic-gate	SUNW_OST_OSLIB \
797c478bd9Sstevel@tonic-gate	SUNW_OST_UCBCMD \
807c478bd9Sstevel@tonic-gate	SUNW_OST_ZONEINFO
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gateMSGDDIRS=       $(DOMAINS:%=$(MSGROOT)/%)
837c478bd9Sstevel@tonic-gateMSGDIRS=        $(MSGROOT) $(MSGDDIRS) $(MSGROOT)/LC_TIME
847c478bd9Sstevel@tonic-gate
85694c35faSJosef 'Jeff' Sipekall :=			TARGET= all
86694c35faSJosef 'Jeff' Sipekinstall :=		TARGET= install
87e3c7c8f8SMark J. Nelsoninstall1 :=		TARGET= install
88e3c7c8f8SMark J. Nelsoninstall2 :=		TARGET= install
897c478bd9Sstevel@tonic-gateinstall_h :=		TARGET= install_h
907c478bd9Sstevel@tonic-gateclean :=		TARGET= clean
917c478bd9Sstevel@tonic-gateclobber :=		TARGET= clobber
927c478bd9Sstevel@tonic-gatecheck :=		TARGET= check
937c478bd9Sstevel@tonic-gate
947c478bd9Sstevel@tonic-gate.KEEP_STATE:
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gate#
97e3c7c8f8SMark J. Nelson# Note: install does not cause a build in pkg.  To build packages,
98ead1f93eSLiane Praza#	cd pkg and do a 'make install'
997c478bd9Sstevel@tonic-gate#
100e3c7c8f8SMark J. Nelson
101e3c7c8f8SMark J. Nelsonall: mapfiles closedbins sgs .WAIT $(SUBDIRS) pkg
102e3c7c8f8SMark J. Nelson
1035084e753SMark J. Nelson#
1045084e753SMark J. Nelson# The _msg build is a two-step process.  First, the _msg dependency
1055084e753SMark J. Nelson# causes recursive makes in $(MSGSUBDIRS), which stages raw message
1065084e753SMark J. Nelson# files in $(ROOT)/catalog.  Second, the action from the install
1075084e753SMark J. Nelson# target rule causes those messages to be post-processed from where
1085084e753SMark J. Nelson# they were staged in $(ROOT)/catalog, and the results placed into the
1095084e753SMark J. Nelson# proto area.
1105084e753SMark J. Nelson#
1115084e753SMark J. Nelson# The stage-licenses target causes the license files needed for
1125084e753SMark J. Nelson# packaging to be pulled from $(SRC) and $(CLOSED) and staged in
1135084e753SMark J. Nelson# $(ROOT)/licenses.
1145084e753SMark J. Nelson#
1155084e753SMark J. Nelsoninstall: install1 install2 _msg stage-licenses
116581cede6SMark J. Nelson	@cd msg; pwd; $(MAKE) _msg
1177c478bd9Sstevel@tonic-gate	@rm -rf "$(ROOT)/catalog"
1187c478bd9Sstevel@tonic-gate
1195084e753SMark J. Nelsonstage-licenses: install2
1205084e753SMark J. Nelson	@cd pkg; pwd; $(MAKE) stage-licenses
1215084e753SMark J. Nelson
122e3c7c8f8SMark J. Nelsoninstall1: mapfiles closedbins sgs
123e3c7c8f8SMark J. Nelson
124e3c7c8f8SMark J. Nelsoninstall2: install1 $(SUBDIRS)
125e3c7c8f8SMark J. Nelson
126b6805bf7SGordon Ross_msg: _msgdirs rootdirs FRC
127e3c7c8f8SMark J. Nelson	@for m in $(MSGSUBDIRS); do \
128e3c7c8f8SMark J. Nelson		cd $$m; pwd; $(MAKE) _msg; cd ..; \
129e3c7c8f8SMark J. Nelson	done
130e3c7c8f8SMark J. Nelson
131232c6638Sriemapfiles: bldtools
13224da5b34Srie	@cd common/mapfiles; pwd; $(MAKE) install
13324da5b34Srie
134b6805bf7SGordon Rossclean: $(SUBDIRS) head pkg
135b6805bf7SGordon Rossclobber: $(SUBDIRS) head pkg clobber_local
136b6805bf7SGordon Rossclobber_local:
137b6805bf7SGordon Ross	@cd tools; pwd; $(MAKE) clobber
138b6805bf7SGordon Ross	@cd common/mapfiles; pwd; $(MAKE) clobber
139b6805bf7SGordon Ross	@cd msg; pwd; $(MAKE) clobber
1407c478bd9Sstevel@tonic-gate
141*2e27c225SDan McDonald# If the tarballs are included inside ON_CLOSED_BINS, use those to extract and
142*2e27c225SDan McDonald# preserve the permissions (in case a distro ships them).
143*2e27c225SDan McDonald
144a0ed5030SJason Kingclosedbins: bldtools $(ROOTDIRS) FRC
1455b43ca41Sah89892	@CLOSED_ROOT="$$ON_CLOSED_BINS/root_$(MACH)$${RELEASE_BUILD+-nd}"; \
146*2e27c225SDan McDonald	if [ -f "$$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2" ]; then \
147*2e27c225SDan McDonald		$(ECHO) "Extracting tarball $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2"; \
148*2e27c225SDan McDonald		(cd $(CODEMGR_WS); \
149*2e27c225SDan McDonald		   $(TAR) xjpf $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2); \
150*2e27c225SDan McDonald		CLOSED_ROOT="$(CODEMGR_WS)/closed/root_$(MACH)$${RELEASE_BUILD+-nd}"; \
151*2e27c225SDan McDonald	fi; \
1525b43ca41Sah89892	if [ ! -d "$$CLOSED_ROOT" ]; then \
153c0e7977aSJosef 'Jeff' Sipek		$(ECHO) "Error: ON_CLOSED_BINS must point to closed" \
154c0e7977aSJosef 'Jeff' Sipek		    "binaries."; \
1555b43ca41Sah89892		$(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \
1565b43ca41Sah89892		    "present in $$ON_CLOSED_BINS."; \
157fb9f9b97Skupfer		exit 1; \
158fb9f9b97Skupfer	fi; \
1595b43ca41Sah89892	$(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \
1602ad72058SGarrett D'Amore	(cd $$CLOSED_ROOT; \
1612ad72058SGarrett D'Amore	    $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \
1622ad72058SGarrett D'Amore	    (cd $(ROOT); $(TAR) xBpf -); \
163a0ed5030SJason King	( cd $(ROOT); $(CTFSTRIP) $$(cd $$CLOSED_ROOT; $(FIND) \
164a0ed5030SJason King	    ./kernel ./usr/kernel ./platform/*/kernel -type f -a -perm -u+x | \
165c0e7977aSJosef 'Jeff' Sipek	    $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) )
166fb9f9b97Skupfer
16798157a70Sakolb#
168e3c7c8f8SMark J. Nelson# Declare what parts can be built in parallel
16998157a70Sakolb# DUMMY at the end is used in case macro expansion produces an empty string to
17098157a70Sakolb# prevent everything going in parallel
17198157a70Sakolb#
17298157a70Sakolb.PARALLEL: $(PARALLEL_HEADERS) DUMMY
17398157a70Sakolb.PARALLEL: $(PARALLEL_DIRS) DUMMY
17498157a70Sakolb
175ead1f93eSLiane Praza$(SUBDIRS) head pkg: FRC
1767c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
1777c478bd9Sstevel@tonic-gate
1787c478bd9Sstevel@tonic-gate# librpcsvc has a dependency on headers installed by
1797c478bd9Sstevel@tonic-gate# userheaders, hence the .WAIT before libheaders.
1807c478bd9Sstevel@tonic-gatesgs: rootdirs .WAIT sysheaders userheaders .WAIT \
1815bbb4db2SGarrett D'Amore	libheaders cmdheaders
1827c478bd9Sstevel@tonic-gate
1837c478bd9Sstevel@tonic-gate#
184232c6638Srie# Top-level setup target to setup the development environment that includes
185232c6638Srie# headers, tools and generated mapfiles.  For open-only builds (i.e.: source
186232c6638Srie# trees w/o usr/closed), this also depends on the closedbins target (above)
187232c6638Srie# in order to properly seed the proto area.  Note, although the tools are
188232c6638Srie# dependent on a number of constant mapfiles, the tools themselves are
189232c6638Srie# required to build the generated mapfiles.
1907345d6c1Sstevel#
19178add226Sjmcpsetup: closedbins bldtools sgs mapfiles
192232c6638Srie
19378add226Sjmcpbldtools:
1947c478bd9Sstevel@tonic-gate	@cd tools; pwd; $(MAKE) install
1957c478bd9Sstevel@tonic-gate
1967c478bd9Sstevel@tonic-gate# /var/mail/:saved is a special case because of the colon in the name.
1977c478bd9Sstevel@tonic-gate#
1987c478bd9Sstevel@tonic-gaterootdirs: $(ROOTDIRS)
1997c478bd9Sstevel@tonic-gate	$(INS) -d -m 775 $(ROOT)/var/mail/:saved
2007c478bd9Sstevel@tonic-gate
2017c478bd9Sstevel@tonic-gatelint: FRC
2027c478bd9Sstevel@tonic-gate	$(MAKE) -f Makefile.lint
2037c478bd9Sstevel@tonic-gate
2047c478bd9Sstevel@tonic-gate_msgdirs:       $(MSGDIRS)
2057c478bd9Sstevel@tonic-gate
2067c478bd9Sstevel@tonic-gate$(ROOTDIRS) $(MSGDIRS):
2077c478bd9Sstevel@tonic-gate	$(INS.dir)
2087c478bd9Sstevel@tonic-gate
2097c478bd9Sstevel@tonic-gateuserheaders: FRC
2107c478bd9Sstevel@tonic-gate	@cd head; pwd; $(MAKE) install_h
2117c478bd9Sstevel@tonic-gate
21278add226Sjmcplibheaders: bldtools
2137c478bd9Sstevel@tonic-gate	@cd lib; pwd; $(MAKE) install_h
2147c478bd9Sstevel@tonic-gate
2157c478bd9Sstevel@tonic-gatesysheaders: FRC
2167c478bd9Sstevel@tonic-gate	@cd uts; pwd; $(MAKE) install_h
2177c478bd9Sstevel@tonic-gate
2187c478bd9Sstevel@tonic-gatecmdheaders: FRC
2197c478bd9Sstevel@tonic-gate	@cd cmd/fm; pwd; $(MAKE) install_h
2207c478bd9Sstevel@tonic-gate	@cd cmd/mdb; pwd; $(MAKE) install_h
2217c478bd9Sstevel@tonic-gate
22295c635efSGarrett D'Amorecheck:	$(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS) $(CHKMANSUBDIRS)
2237c478bd9Sstevel@tonic-gate
2247c478bd9Sstevel@tonic-gate#
2257c478bd9Sstevel@tonic-gate# Cross-reference customization: skip all of the subdirectories that
2267c478bd9Sstevel@tonic-gate# don't contain actual source code.
2277c478bd9Sstevel@tonic-gate#
228694c35faSJosef 'Jeff' SipekXRPRUNE = pkg prototypes
2297c478bd9Sstevel@tonic-gateXRINCDIRS = uts/common head ucbhead
2307c478bd9Sstevel@tonic-gate
2317c478bd9Sstevel@tonic-gatecscope.out tags: FRC
2327c478bd9Sstevel@tonic-gate	$(XREF) -f -x $@
2337c478bd9Sstevel@tonic-gate
2347c478bd9Sstevel@tonic-gateFRC:
2357c478bd9Sstevel@tonic-gate
2367c478bd9Sstevel@tonic-gate#
2377c478bd9Sstevel@tonic-gate# Targets for reporting compiler versions; nightly uses these.
2387c478bd9Sstevel@tonic-gate#
2397c478bd9Sstevel@tonic-gate
2407c478bd9Sstevel@tonic-gatecc-version:
2411912d2c4Swesolows	@if $($(MACH)_CC) -_versions >/dev/null 2>/dev/null; then \
242010b217aSwesolows		$(ECHO) 32-bit compiler;			\
2437c478bd9Sstevel@tonic-gate		$(ECHO) $($(MACH)_CC);				\
2441912d2c4Swesolows		$($(MACH)_CC) -_versions 2>&1 |			\
2451912d2c4Swesolows		    $(EGREP) '^(cw|cc|gcc|primary|shadow)';	\
2467c478bd9Sstevel@tonic-gate	else							\
247bf40377cSwesolows		__COMPILER=`$($(MACH)_CC) -_compiler 2>/dev/null || $(TRUE)`;\
248bf40377cSwesolows		if [ -z "$$__COMPILER" ]; then			\
249010b217aSwesolows			$(ECHO) No 32-bit compiler found;	\
2507c478bd9Sstevel@tonic-gate			exit 1;					\
251bf40377cSwesolows		else						\
252010b217aSwesolows			$(ECHO) 32-bit compiler;		\
253bf40377cSwesolows			$(ECHO) $($(MACH)_CC);			\
254bf40377cSwesolows			$(ECHO) $$__COMPILER;			\
255bf40377cSwesolows			$($(MACH)_CC) -V 2>&1 | head -1;	\
256bf40377cSwesolows		fi;						\
2577c478bd9Sstevel@tonic-gate	fi
2587c478bd9Sstevel@tonic-gate
2597c478bd9Sstevel@tonic-gatecc64-version:
2601912d2c4Swesolows	@if $($(MACH64)_CC) -_versions >/dev/null 2>/dev/null; then \
261010b217aSwesolows		$(ECHO) 64-bit compiler;			\
2627c478bd9Sstevel@tonic-gate		$(ECHO) $($(MACH64)_CC);			\
2631912d2c4Swesolows		$($(MACH64)_CC) -_versions 2>&1 |		\
2641912d2c4Swesolows		    $(EGREP) '^(cw|cc|gcc|primary|shadow)';	\
2657c478bd9Sstevel@tonic-gate	else							\
266bf40377cSwesolows		__COMPILER=`$($(MACH64)_CC) -_compiler 2>/dev/null || $(TRUE)`;\
267bf40377cSwesolows		if [ -z "$$__COMPILER" ]; then			\
2687c478bd9Sstevel@tonic-gate			$(ECHO) No 64-bit compiler found;	\
269bf40377cSwesolows			exit 1;					\
270bf40377cSwesolows		else						\
271010b217aSwesolows			$(ECHO) 64-bit compiler;		\
272bf40377cSwesolows			$(ECHO) $($(MACH64)_CC);		\
273bf40377cSwesolows			$(ECHO) $$__COMPILER;			\
274bf40377cSwesolows			$($(MACH64)_CC) -V 2>&1 | head -1;	\
275bf40377cSwesolows		fi;						\
2767c478bd9Sstevel@tonic-gate	fi
2777c478bd9Sstevel@tonic-gate
2787c478bd9Sstevel@tonic-gatejava-version:
2797c478bd9Sstevel@tonic-gate	@if [ -x "$(JAVAC)" ]; then			\
2807c478bd9Sstevel@tonic-gate		$(ECHO) $(JAVAC);			\
2817c478bd9Sstevel@tonic-gate		$(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1;	\
2827c478bd9Sstevel@tonic-gate	else						\
2837c478bd9Sstevel@tonic-gate		$(ECHO) No Java compiler found;		\
2847c478bd9Sstevel@tonic-gate		exit 1;					\
2857c478bd9Sstevel@tonic-gate	fi
286