1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# ident "%Z%%M% %I% %E% SMI" 26# 27# Makefile for system source 28# 29# include global definitions 30include Makefile.master 31# 32# the Targetdirs file is the AT&T target.dirs file in a makefile format. 33# it defines TARGETDIRS and ROOTDIRS. 34include Targetdirs 35 36COMMON_SUBDIRS= uts lib cmd ucblib ucbcmd 37 38# 39# sparc needs to build both stand and psm, in that order 40# x86 needs to build psm and GRUB 41# 42sparc_SUBDIRS= stand psm 43i386_SUBDIRS= psm grub 44 45SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) 46 47HDRSUBDIRS= uts head lib cmd ucbhead 48 49# UCB headers are bug-for-bug compatible and not checkable against the header 50# standards. 51# 52CHKHDRSUBDIRS= head uts lib 53 54# The check target also causes smf(5) service manifests to be validated. 55CHKMFSTSUBDIRS= cmd 56 57MSGSUBDIRS= cmd ucbcmd lib 58DOMAINS= \ 59 SUNW_OST_ADMIN \ 60 SUNW_OST_NETRPC \ 61 SUNW_OST_OSCMD \ 62 SUNW_OST_OSLIB \ 63 SUNW_OST_UCBCMD \ 64 SUNW_OST_ZONEINFO 65 66MSGDDIRS= $(DOMAINS:%=$(MSGROOT)/%) 67MSGDIRS= $(MSGROOT) $(MSGDDIRS) $(MSGROOT)/LC_TIME 68 69all all_xmod := TARGET= all 70install install_xmod := TARGET= install 71install_h := TARGET= install_h 72clean := TARGET= clean 73clobber := TARGET= clobber 74check := TARGET= check 75_msg := TARGET= _msg 76 77 78.KEEP_STATE: 79 80# 81# Note: install only builds the all target for the pkgdefs 82# directory. We are not yet ready to have an install 83# build create 'packages' also. To build packages 84# cd pkgdefs and do a 'make install' 85# 86all: closedbins sgs .WAIT $(SUBDIRS) pkg_all 87install: closedbins sgs .WAIT $(SUBDIRS) pkg_all .WAIT _msg 88 @cd pkgdefs/SUNW0on; pwd; $(MAKE) _msg 89 @rm -rf "$(ROOT)/catalog" 90 91clean clobber: $(SUBDIRS) head pkgdefs 92_msg: _msgdirs rootdirs $(MSGSUBDIRS) 93 94# for a complete build from scratch 95crankturn: sgs uts pkg_all 96 @cd lib; pwd; $(MAKE) install 97 @cd cmd; pwd; $(MAKE) all 98 @cd ucblib; pwd; $(MAKE) install 99 @cd ucbcmd; pwd; $(MAKE) all 100 101pkg_all: 102 @cd pkgdefs; pwd; $(MAKE) all 103 104# 105# target for building a proto area for reference via the ROOT macro 106# 107protolibs: rootlibs ucblibs 108 109# build all ucb libraries 110# 111ucblibs: 112 @cd ucblib; pwd; $(MAKE) install 113 114# Base subset of rootproto, excluding ucb libraries 115# 116rootlibs: sgs 117 @cd lib; pwd; $(MAKE) install 118 119closedbins: FRC $(ROOTDIRS) 120 @if [ "$$CLOSED_IS_PRESENT" = no ]; then \ 121 if [ ! -d "$$ON_CLOSED_BINS/root_$(MACH)" ]; then \ 122 $(ECHO) "Error: if closed sources are not present," \ 123 "ON_CLOSED_BINS must point to closed binaries."; \ 124 exit 1; \ 125 fi; \ 126 $(ECHO) "Copying closed binaries from $$ON_CLOSED_BINS"; \ 127 (cd $$ON_CLOSED_BINS/root_$(MACH); tar cf - .) | \ 128 (cd $(ROOT); tar xBf -); \ 129 fi 130 131$(SUBDIRS) head ucbhead pkgdefs: FRC 132 @cd $@; pwd; $(MAKE) $(TARGET) 133 134.PARALLEL: sysheaders userheaders libheaders ucbheaders cmdheaders \ 135 commonheaders 136 137# librpcsvc has a dependency on headers installed by 138# userheaders, hence the .WAIT before libheaders. 139sgs: rootdirs .WAIT sysheaders userheaders .WAIT \ 140 libheaders ucbheaders cmdheaders commonheaders 141 142# 143# top-level setup target (headers/tools) 144setup: sgs 145 @cd tools; pwd; $(MAKE) install 146 147# /var/mail/:saved is a special case because of the colon in the name. 148# 149rootdirs: $(ROOTDIRS) 150 $(INS) -d -m 775 $(ROOT)/var/mail/:saved 151 $(CH)$(CHOWN) root $(ROOT)/var/mail/:saved 152 $(CH)$(CHGRP) mail $(ROOT)/var/mail/:saved 153 154lint: FRC 155 $(MAKE) -f Makefile.lint 156 157_msgdirs: $(MSGDIRS) 158 159$(ROOTDIRS) $(MSGDIRS): 160 $(INS.dir) 161 162userheaders: FRC 163 @cd head; pwd; $(MAKE) install_h 164 165libheaders: FRC 166 @cd lib; pwd; $(MAKE) install_h 167 168sysheaders: FRC 169 @cd uts; pwd; $(MAKE) install_h 170 171ucbheaders: FRC 172 @cd ucbhead; pwd; $(MAKE) install_h 173 174cmdheaders: FRC 175 @cd cmd/fm; pwd; $(MAKE) install_h 176 @cd cmd/mdb; pwd; $(MAKE) install_h 177 178commonheaders: FRC 179 @cd common/ipf; pwd; $(MAKE) install_h 180 181# each xmod target depends on a corresponding MACH-specific pseudotarget 182# before doing common xmod work 183# 184all_xmod install_xmod: $$@_$(MACH) 185 @cd uts/common/sys; pwd; $(MAKE) svvs_h 186 187all_xmod_sparc install_xmod_sparc: FRC 188 @cd uts/sparc; pwd; \ 189 $(MAKE) TARGET=$(TARGET) svvs pm wsdrv 190 191all_xmod_i386 install_xmod_i386: FRC 192 @cd uts/i86; pwd; $(MAKE) TARGET=$(TARGET) svvs 193 194check: $(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS) 195 196# 197# Cross-reference customization: skip all of the subdirectories that 198# don't contain actual source code. 199# 200$(CLOSED_BUILD)XRDIRS += ../closed 201XRPRUNE = spec pkgdefs prototypes xmod 202XRINCDIRS = uts/common head ucbhead 203$(CLOSED_BUILD)XRINCDIRS = uts/common ../closed/uts/common head ucbhead 204 205cscope.out tags: FRC 206 $(XREF) -f -x $@ 207 208FRC: 209 210# EXPORT DELETE START 211 212XMOD_DELETE_FILES:sh = cat xmod/xmod_files 213 214EXPORT_SRC: 215 @cd $(CLOSED)/cmd/cmd-inet/usr.lib/in.iked; pwd; $(MAKE) EXPORT_SRC 216 @cd $(CLOSED)/cmd/cmd-inet/usr.lib/ike-certutils; pwd; \ 217 $(MAKE) EXPORT_SRC 218 @cd cmd/cmd-inet/usr.sbin; pwd; $(MAKE) EXPORT_SRC 219 @cd $(CLOSED)/cmd/cmd-crypto/etc; pwd; $(MAKE) EXPORT_SRC 220 @cd cmd/crypt; pwd; $(MAKE) EXPORT_SRC 221 @cd cmd/gss/gssd; pwd; $(MAKE) EXPORT_SRC 222 @cd cmd/krb5/kadmin; pwd; $(MAKE) EXPORT_SRC 223 @cd cmd/sendmail/src; pwd; $(MAKE) EXPORT_SRC 224 @cd cmd/xntpd; pwd; $(MAKE) EXPORT_SRC 225 @cd common/crypto/aes; pwd; $(MAKE) EXPORT_SRC 226 @cd common/crypto/arcfour; pwd; $(MAKE) EXPORT_SRC 227 @cd common/crypto/blowfish; pwd; $(MAKE) EXPORT_SRC 228 @cd common/crypto/des; pwd; $(MAKE) EXPORT_SRC 229 @cd common/crypto/rsa; pwd; $(MAKE) EXPORT_SRC 230 @cd lib/crypt_modules/bsdbf; pwd ; $(MAKE) EXPORT_SRC 231 @cd lib/gss_mechs/mech_dummy; pwd; $(MAKE) EXPORT_SRC 232 @cd lib/gss_mechs/mech_dh/backend; pwd; $(MAKE) EXPORT_SRC 233 @cd lib/gss_mechs/mech_krb5; pwd; $(MAKE) EXPORT_SRC 234 @cd lib/gss_mechs/mech_spnego; pwd; $(MAKE) EXPORT_SRC 235 @cd lib/libcrypt; pwd; $(MAKE) EXPORT_SRC 236 @cd $(CLOSED)/lib/libelfsign; pwd; $(MAKE) EXPORT_SRC 237 @cd lib/libgss; pwd; $(MAKE) EXPORT_SRC 238 @cd $(CLOSED)/lib/libike; pwd; $(MAKE) EXPORT_SRC 239 @cd lib/libnsl; pwd; $(MAKE) EXPORT_SRC 240 @cd lib/openssl; pwd; $(MAKE) EXPORT_SRC 241 @cd lib/pkcs11/pkcs11_softtoken/common; pwd; $(MAKE) EXPORT_SRC 242 @cd lib/pkcs11/libpkcs11; pwd; $(MAKE) EXPORT_SRC 243 @cd lib/pkcs11; pwd; $(MAKE) EXPORT_SRC 244 @cd lib/libsldap; pwd; $(MAKE) EXPORT_SRC 245 @cd lib/libsasl; pwd; $(MAKE) EXPORT_SRC 246 @cd lib/sasl_plugins; pwd; $(MAKE) EXPORT_SRC 247 @cd $(CLOSED)/lib/smartcard; pwd; $(MAKE) EXPORT_SRC 248 @cd lib/pam_modules/krb5; pwd; $(MAKE) EXPORT_SRC 249 @cd lib/udapl; pwd; $(MAKE) EXPORT_SRC 250 @cd lib/libresolv2; pwd; $(MAKE) EXPORT_SRC 251 @cd $(CLOSED)/tools/elfsign; pwd; $(MAKE) EXPORT_SRC 252 @cd uts/common/crypto/io; pwd; $(MAKE) EXPORT_SRC 253 @cd uts/common/des; pwd; $(MAKE) EXPORT_SRC 254 @cd uts/common/rpc; pwd; $(MAKE) EXPORT_SRC 255 @cd uts/common/sys; pwd; $(MAKE) EXPORT_SRC 256 @cd uts/common/gssapi/include; pwd; $(MAKE) EXPORT_SRC 257 @cd uts/common/gssapi; pwd; $(MAKE) EXPORT_SRC 258 @cd uts/common/gssapi/mechs/dummy; pwd; $(MAKE) EXPORT_SRC 259 @cd uts/common/gssapi/mechs/krb5; pwd; $(MAKE) EXPORT_SRC 260 @cd uts/common; pwd; $(MAKE) EXPORT_SRC 261 @cd uts/sparc; pwd; $(MAKE) EXPORT_SRC 262 @cd $(CLOSED)/uts/sun4u/forthdebug; pwd; $(MAKE) EXPORT_SRC 263 @cd uts/intel; pwd; $(MAKE) EXPORT_SRC 264 @cd uts/sun4u; pwd; $(MAKE) EXPORT_SRC 265 @cd $(CLOSED)/uts/sun4u/chalupa; pwd; $(MAKE) EXPORT_SRC 266 @cd uts/sun4u/cherrystone; pwd; $(MAKE) EXPORT_SRC 267 @cd uts/sun4u/daktari; pwd; $(MAKE) EXPORT_SRC 268 @cd uts/sun4u/enchilada; pwd; $(MAKE) EXPORT_SRC 269 @cd $(CLOSED)/uts/sun4u/ents; pwd; $(MAKE) EXPORT_SRC 270 @cd uts/sun4u/excalibur; pwd; $(MAKE) EXPORT_SRC 271 @cd uts/sun4u/chicago; pwd; $(MAKE) EXPORT_SRC 272 @cd uts/sun4u/boston; pwd; $(MAKE) EXPORT_SRC 273 @cd uts/sun4u/seattle; pwd; $(MAKE) EXPORT_SRC 274 @cd uts/sun4u/littleneck; pwd; $(MAKE) EXPORT_SRC 275 @cd $(CLOSED)/uts/sun4u/lw2plus; pwd; $(MAKE) EXPORT_SRC 276 @cd $(CLOSED)/uts/sun4u/lw8; pwd; $(MAKE) EXPORT_SRC 277 @cd uts/sun4u/mpxu; pwd; $(MAKE) EXPORT_SRC 278 @cd uts/sun4u/serengeti; pwd; $(MAKE) EXPORT_SRC 279 @cd uts/sun4u/starcat; pwd; $(MAKE) EXPORT_SRC 280 @cd uts/sun4u/taco; pwd; $(MAKE) EXPORT_SRC 281 @cd $(CLOSED)/uts/sun4v/io/ncp; pwd; $(MAKE) EXPORT_SRC 282 @cd pkgdefs; pwd; $(MAKE) EXPORT_SRC 283 $(RM) -r $(XMOD_DELETE_FILES) 284 $(RM) Targetdirs+ 285 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 286 < Targetdirs > Targetdirs+ 287 $(MV) Targetdirs+ Targetdirs 288 $(CHMOD) 444 Targetdirs 289 $(RM) Makefile+ 290 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 291 < Makefile > Makefile+ 292 $(MV) Makefile+ Makefile 293 $(CHMOD) 444 Makefile 294 $(RM) Makefile.master+ 295 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 296 < Makefile.master > Makefile.master+ 297 $(MV) Makefile.master+ Makefile.master 298 $(CHMOD) 444 Makefile.master 299 300CRYPT_SRC: 301 @cd $(CLOSED)/cmd/cmd-inet/usr.lib/in.iked; pwd; $(MAKE) CRYPT_SRC 302 @cd $(CLOSED)/cmd/cmd-inet/usr.lib/ike-certutils; pwd; \ 303 $(MAKE) CRYPT_SRC 304 @cd lib/crypt_modules/bsdbf; pwd ; $(MAKE) CRYPT_SRC 305 @cd lib/gss_mechs/mech_dummy; pwd; $(MAKE) CRYPT_SRC 306 @cd lib/gss_mechs/mech_dh/backend; pwd; $(MAKE) CRYPT_SRC 307 @cd lib/gss_mechs/mech_krb5; pwd; $(MAKE) CRYPT_SRC 308 @cd lib/gss_mechs/mech_spnego; pwd; $(MAKE) CRYPT_SRC 309 @cd $(CLOSED)/lib/libelfsign; pwd; $(MAKE) CRYPT_SRC 310 @cd $(CLOSED)/lib/libike; pwd; $(MAKE) CRYPT_SRC 311 @cd lib/libnsl; pwd; $(MAKE) CRYPT_SRC 312 @cd lib/libsasl; pwd; $(MAKE) CRYPT_SRC 313 @cd lib/libresolv2; pwd; $(MAKE) CRYPT_SRC 314 @cd lib/sasl_plugins; pwd; $(MAKE) CRYPT_SRC 315 @cd lib/pam_modules/krb5; pwd; $(MAKE) CRYPT_SRC 316 @cd $(CLOSED)/tools/elfsign; pwd; $(MAKE) CRYPT_SRC 317 @cd uts/common/gssapi; pwd; $(MAKE) CRYPT_SRC 318 @cd uts/common/gssapi/include; pwd; $(MAKE) CRYPT_SRC 319 @cd uts/common/gssapi/mechs/dummy; pwd; $(MAKE) CRYPT_SRC 320 @cd uts/common/gssapi/mechs/krb5; pwd; $(MAKE) CRYPT_SRC 321 $(RM) Makefile+ 322 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 323 < Makefile > Makefile+ 324 $(MV) Makefile+ Makefile 325 $(CHMOD) 444 Makefile 326 $(RM) Makefile.master+ 327 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 328 < Makefile.master > Makefile.master+ 329 $(MV) Makefile.master+ Makefile.master 330 $(CHMOD) 444 Makefile.master 331 332# EXPORT DELETE END 333 334ONC_PLUS: 335 @cd cmd/login; pwd; $(MAKE) ONC_PLUS 336 @cd uts; pwd; $(MAKE) ONC_PLUS 337 338# 339# Targets for reporting compiler versions; nightly uses these. 340# 341 342cc-version: 343 @if [ -x "$($(MACH)_CC)" ]; then \ 344 $(ECHO) 32-bit compiler; \ 345 $(ECHO) $($(MACH)_CC); \ 346 $($(MACH)_CC) -V 2>&1 | head -1; \ 347 else \ 348 __COMPILER=`$($(MACH)_CC) -_compiler 2>/dev/null || $(TRUE)`;\ 349 if [ -z "$$__COMPILER" ]; then \ 350 $(ECHO) No 32-bit compiler found; \ 351 exit 1; \ 352 else \ 353 $(ECHO) 32-bit compiler; \ 354 $(ECHO) $($(MACH)_CC); \ 355 $(ECHO) $$__COMPILER; \ 356 $($(MACH)_CC) -V 2>&1 | head -1; \ 357 fi; \ 358 fi 359 360cc64-version: 361 @if [ -x "$($(MACH64)_CC)" ]; then \ 362 $(ECHO) 64-bit compiler; \ 363 $(ECHO) $($(MACH64)_CC); \ 364 $($(MACH64)_CC) -V 2>&1 | head -1; \ 365 else \ 366 __COMPILER=`$($(MACH64)_CC) -_compiler 2>/dev/null || $(TRUE)`;\ 367 if [ -z "$$__COMPILER" ]; then \ 368 $(ECHO) No 64-bit compiler found; \ 369 exit 1; \ 370 else \ 371 $(ECHO) 64-bit compiler; \ 372 $(ECHO) $($(MACH64)_CC); \ 373 $(ECHO) $$__COMPILER; \ 374 $($(MACH64)_CC) -V 2>&1 | head -1; \ 375 fi; \ 376 fi 377 378java-version: 379 @if [ -x "$(JAVAC)" ]; then \ 380 $(ECHO) $(JAVAC); \ 381 $(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1; \ 382 else \ 383 $(ECHO) No Java compiler found; \ 384 exit 1; \ 385 fi 386