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 80694c35faSJosef 'Jeff' Sipekall := TARGET= all 81694c35faSJosef '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 118e3c7c8f8SMark J. Nelson 119e3c7c8f8SMark J. Nelsoninstall2: install1 $(SUBDIRS) 120e3c7c8f8SMark J. Nelson 121b6805bf7SGordon Ross_msg: _msgdirs rootdirs FRC 122e3c7c8f8SMark J. Nelson @for m in $(MSGSUBDIRS); do \ 123e3c7c8f8SMark J. Nelson cd $$m; pwd; $(MAKE) _msg; cd ..; \ 124e3c7c8f8SMark J. Nelson done 125e3c7c8f8SMark J. Nelson 126232c6638Sriemapfiles: bldtools 12724da5b34Srie @cd common/mapfiles; pwd; $(MAKE) install 12824da5b34Srie 129b6805bf7SGordon Rossclean: $(SUBDIRS) head pkg 130b6805bf7SGordon Rossclobber: $(SUBDIRS) head pkg clobber_local 131b6805bf7SGordon Rossclobber_local: 132b6805bf7SGordon Ross @cd tools; pwd; $(MAKE) clobber 133b6805bf7SGordon Ross @cd common/mapfiles; pwd; $(MAKE) clobber 134b6805bf7SGordon Ross @cd msg; pwd; $(MAKE) clobber 1357c478bd9Sstevel@tonic-gate 136a0ed5030SJason Kingclosedbins: bldtools $(ROOTDIRS) FRC 1375b43ca41Sah89892 @CLOSED_ROOT="$$ON_CLOSED_BINS/root_$(MACH)$${RELEASE_BUILD+-nd}"; \ 1385b43ca41Sah89892 if [ ! -d "$$CLOSED_ROOT" ]; then \ 139*c0e7977aSJosef 'Jeff' Sipek $(ECHO) "Error: ON_CLOSED_BINS must point to closed" \ 140*c0e7977aSJosef 'Jeff' Sipek "binaries."; \ 1415b43ca41Sah89892 $(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \ 1425b43ca41Sah89892 "present in $$ON_CLOSED_BINS."; \ 143fb9f9b97Skupfer exit 1; \ 144fb9f9b97Skupfer fi; \ 1455b43ca41Sah89892 $(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \ 1462ad72058SGarrett D'Amore (cd $$CLOSED_ROOT; \ 1472ad72058SGarrett D'Amore $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \ 1482ad72058SGarrett D'Amore (cd $(ROOT); $(TAR) xBpf -); \ 149a0ed5030SJason King ( cd $(ROOT); $(CTFSTRIP) $$(cd $$CLOSED_ROOT; $(FIND) \ 150a0ed5030SJason King ./kernel ./usr/kernel ./platform/*/kernel -type f -a -perm -u+x | \ 151*c0e7977aSJosef 'Jeff' Sipek $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) ) 152fb9f9b97Skupfer 15398157a70Sakolb# 154e3c7c8f8SMark J. Nelson# Declare what parts can be built in parallel 15598157a70Sakolb# DUMMY at the end is used in case macro expansion produces an empty string to 15698157a70Sakolb# prevent everything going in parallel 15798157a70Sakolb# 15898157a70Sakolb.PARALLEL: $(PARALLEL_HEADERS) DUMMY 15998157a70Sakolb.PARALLEL: $(PARALLEL_DIRS) DUMMY 16098157a70Sakolb 161ead1f93eSLiane Praza$(SUBDIRS) head pkg: FRC 1627c478bd9Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 1637c478bd9Sstevel@tonic-gate 1647c478bd9Sstevel@tonic-gate# librpcsvc has a dependency on headers installed by 1657c478bd9Sstevel@tonic-gate# userheaders, hence the .WAIT before libheaders. 1667c478bd9Sstevel@tonic-gatesgs: rootdirs .WAIT sysheaders userheaders .WAIT \ 1675bbb4db2SGarrett D'Amore libheaders cmdheaders 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate# 170232c6638Srie# Top-level setup target to setup the development environment that includes 171232c6638Srie# headers, tools and generated mapfiles. For open-only builds (i.e.: source 172232c6638Srie# trees w/o usr/closed), this also depends on the closedbins target (above) 173232c6638Srie# in order to properly seed the proto area. Note, although the tools are 174232c6638Srie# dependent on a number of constant mapfiles, the tools themselves are 175232c6638Srie# required to build the generated mapfiles. 1767345d6c1Sstevel# 17778add226Sjmcpsetup: closedbins bldtools sgs mapfiles 178232c6638Srie 17978add226Sjmcpbldtools: 1807c478bd9Sstevel@tonic-gate @cd tools; pwd; $(MAKE) install 1817c478bd9Sstevel@tonic-gate 1827c478bd9Sstevel@tonic-gate# /var/mail/:saved is a special case because of the colon in the name. 1837c478bd9Sstevel@tonic-gate# 1847c478bd9Sstevel@tonic-gaterootdirs: $(ROOTDIRS) 1857c478bd9Sstevel@tonic-gate $(INS) -d -m 775 $(ROOT)/var/mail/:saved 1867c478bd9Sstevel@tonic-gate 1877c478bd9Sstevel@tonic-gatelint: FRC 1887c478bd9Sstevel@tonic-gate $(MAKE) -f Makefile.lint 1897c478bd9Sstevel@tonic-gate 1907c478bd9Sstevel@tonic-gate_msgdirs: $(MSGDIRS) 1917c478bd9Sstevel@tonic-gate 1927c478bd9Sstevel@tonic-gate$(ROOTDIRS) $(MSGDIRS): 1937c478bd9Sstevel@tonic-gate $(INS.dir) 1947c478bd9Sstevel@tonic-gate 1957c478bd9Sstevel@tonic-gateuserheaders: FRC 1967c478bd9Sstevel@tonic-gate @cd head; pwd; $(MAKE) install_h 1977c478bd9Sstevel@tonic-gate 19878add226Sjmcplibheaders: bldtools 1997c478bd9Sstevel@tonic-gate @cd lib; pwd; $(MAKE) install_h 2007c478bd9Sstevel@tonic-gate 2017c478bd9Sstevel@tonic-gatesysheaders: FRC 2027c478bd9Sstevel@tonic-gate @cd uts; pwd; $(MAKE) install_h 2037c478bd9Sstevel@tonic-gate 2047c478bd9Sstevel@tonic-gatecmdheaders: FRC 2057c478bd9Sstevel@tonic-gate @cd cmd/fm; pwd; $(MAKE) install_h 2067c478bd9Sstevel@tonic-gate @cd cmd/mdb; pwd; $(MAKE) install_h 2077c478bd9Sstevel@tonic-gate 2087c478bd9Sstevel@tonic-gatecheck: $(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS) 2097c478bd9Sstevel@tonic-gate 2107c478bd9Sstevel@tonic-gate# 2117c478bd9Sstevel@tonic-gate# Cross-reference customization: skip all of the subdirectories that 2127c478bd9Sstevel@tonic-gate# don't contain actual source code. 2137c478bd9Sstevel@tonic-gate# 214694c35faSJosef 'Jeff' SipekXRPRUNE = pkg prototypes 2157c478bd9Sstevel@tonic-gateXRINCDIRS = uts/common head ucbhead 2167c478bd9Sstevel@tonic-gate 2177c478bd9Sstevel@tonic-gatecscope.out tags: FRC 2187c478bd9Sstevel@tonic-gate $(XREF) -f -x $@ 2197c478bd9Sstevel@tonic-gate 2207c478bd9Sstevel@tonic-gateFRC: 2217c478bd9Sstevel@tonic-gate 2227c478bd9Sstevel@tonic-gate# 2237c478bd9Sstevel@tonic-gate# Targets for reporting compiler versions; nightly uses these. 2247c478bd9Sstevel@tonic-gate# 2257c478bd9Sstevel@tonic-gate 2267c478bd9Sstevel@tonic-gatecc-version: 2271912d2c4Swesolows @if $($(MACH)_CC) -_versions >/dev/null 2>/dev/null; then \ 228010b217aSwesolows $(ECHO) 32-bit compiler; \ 2297c478bd9Sstevel@tonic-gate $(ECHO) $($(MACH)_CC); \ 2301912d2c4Swesolows $($(MACH)_CC) -_versions 2>&1 | \ 2311912d2c4Swesolows $(EGREP) '^(cw|cc|gcc|primary|shadow)'; \ 2327c478bd9Sstevel@tonic-gate else \ 233bf40377cSwesolows __COMPILER=`$($(MACH)_CC) -_compiler 2>/dev/null || $(TRUE)`;\ 234bf40377cSwesolows if [ -z "$$__COMPILER" ]; then \ 235010b217aSwesolows $(ECHO) No 32-bit compiler found; \ 2367c478bd9Sstevel@tonic-gate exit 1; \ 237bf40377cSwesolows else \ 238010b217aSwesolows $(ECHO) 32-bit compiler; \ 239bf40377cSwesolows $(ECHO) $($(MACH)_CC); \ 240bf40377cSwesolows $(ECHO) $$__COMPILER; \ 241bf40377cSwesolows $($(MACH)_CC) -V 2>&1 | head -1; \ 242bf40377cSwesolows fi; \ 2437c478bd9Sstevel@tonic-gate fi 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gatecc64-version: 2461912d2c4Swesolows @if $($(MACH64)_CC) -_versions >/dev/null 2>/dev/null; then \ 247010b217aSwesolows $(ECHO) 64-bit compiler; \ 2487c478bd9Sstevel@tonic-gate $(ECHO) $($(MACH64)_CC); \ 2491912d2c4Swesolows $($(MACH64)_CC) -_versions 2>&1 | \ 2501912d2c4Swesolows $(EGREP) '^(cw|cc|gcc|primary|shadow)'; \ 2517c478bd9Sstevel@tonic-gate else \ 252bf40377cSwesolows __COMPILER=`$($(MACH64)_CC) -_compiler 2>/dev/null || $(TRUE)`;\ 253bf40377cSwesolows if [ -z "$$__COMPILER" ]; then \ 2547c478bd9Sstevel@tonic-gate $(ECHO) No 64-bit compiler found; \ 255bf40377cSwesolows exit 1; \ 256bf40377cSwesolows else \ 257010b217aSwesolows $(ECHO) 64-bit compiler; \ 258bf40377cSwesolows $(ECHO) $($(MACH64)_CC); \ 259bf40377cSwesolows $(ECHO) $$__COMPILER; \ 260bf40377cSwesolows $($(MACH64)_CC) -V 2>&1 | head -1; \ 261bf40377cSwesolows fi; \ 2627c478bd9Sstevel@tonic-gate fi 2637c478bd9Sstevel@tonic-gate 2647c478bd9Sstevel@tonic-gatejava-version: 2657c478bd9Sstevel@tonic-gate @if [ -x "$(JAVAC)" ]; then \ 2667c478bd9Sstevel@tonic-gate $(ECHO) $(JAVAC); \ 2677c478bd9Sstevel@tonic-gate $(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1; \ 2687c478bd9Sstevel@tonic-gate else \ 2697c478bd9Sstevel@tonic-gate $(ECHO) No Java compiler found; \ 2707c478bd9Sstevel@tonic-gate exit 1; \ 2717c478bd9Sstevel@tonic-gate fi 272