| # |
| # CDDL HEADER START |
| # |
| # The contents of this file are subject to the terms of the |
| # Common Development and Distribution License (the "License"). |
| # You may not use this file except in compliance with the License. |
| # |
| # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| # or http://www.opensolaris.org/os/licensing. |
| # See the License for the specific language governing permissions |
| # and limitations under the License. |
| # |
| # When distributing Covered Code, include this CDDL HEADER in each |
| # file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| # If applicable, add the following below this CDDL HEADER, with the |
| # fields enclosed by brackets "[]" replaced with your own identifying |
| # information: Portions Copyright [yyyy] [name of copyright owner] |
| # |
| # CDDL HEADER END |
| # |
| |
| # |
| # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. |
| # Copyright (c) 2012 by Delphix. All rights reserved. |
| # Copyright 2014 Garrett D'Amore <garrett@damore.org> |
| # Copyright 2015 OmniTI Computer Consulting, Inc. All rights reserved. |
| # Copyright 2016 Toomas Soome <tsoome@me.com> |
| # Copyright 2018 Joyent, Inc. |
| # Copyright 2018 OmniOS Community Edition (OmniOSce) Association. |
| # |
| |
| # |
| # Makefile for system source |
| # |
| # include global definitions |
| include Makefile.master |
| # |
| # the Targetdirs file is the AT&T target.dirs file in a makefile format. |
| # it defines TARGETDIRS and ROOTDIRS. |
| include Targetdirs |
| |
| COMMON_SUBDIRS= data uts lib cmd ucblib ucbcmd psm man test |
| sparc_SUBDIRS= stand |
| i386_SUBDIRS= grub boot |
| |
| # |
| # sparc needs to build stand before psm |
| # |
| $(SPARC_BLD)psm: stand |
| |
| SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) |
| |
| HDRSUBDIRS= uts head lib cmd |
| |
| # UCB headers are bug-for-bug compatible and not checkable against the header |
| # standards. |
| # |
| CHKHDRSUBDIRS= head uts lib |
| |
| # |
| # Headers that can be built in parallel |
| # |
| PARALLEL_HEADERS = sysheaders userheaders libheaders cmdheaders |
| |
| # |
| # Directories that can be built in parallel |
| # |
| PARALLEL_DIRS = data uts lib man |
| |
| # The check target also causes smf(5) service manifests to be validated. |
| CHKMFSTSUBDIRS= cmd |
| |
| # And man page formats |
| CHKMANSUBDIRS = man |
| |
| MSGSUBDIRS= cmd ucbcmd lib data |
| DOMAINS= \ |
| SUNW_OST_ADMIN \ |
| SUNW_OST_NETRPC \ |
| SUNW_OST_OSCMD \ |
| SUNW_OST_OSLIB \ |
| SUNW_OST_UCBCMD \ |
| SUNW_OST_ZONEINFO |
| |
| MSGDDIRS= $(DOMAINS:%=$(MSGROOT)/%) |
| MSGDIRS= $(MSGROOT) $(MSGDDIRS) $(MSGROOT)/LC_TIME |
| |
| all := TARGET= all |
| install := TARGET= install |
| install1 := TARGET= install |
| install2 := TARGET= install |
| install_h := TARGET= install_h |
| clean := TARGET= clean |
| clobber := TARGET= clobber |
| check := TARGET= check |
| |
| .KEEP_STATE: |
| |
| # |
| # Note: install does not cause a build in pkg. To build packages, |
| # cd pkg and do a 'make install' |
| # |
| |
| all: mapfiles closedbins sgs .WAIT $(SUBDIRS) pkg |
| |
| # |
| # The _msg build is a two-step process. First, the _msg dependency |
| # causes recursive makes in $(MSGSUBDIRS), which stages raw message |
| # files in $(ROOT)/catalog. Second, the action from the install |
| # target rule causes those messages to be post-processed from where |
| # they were staged in $(ROOT)/catalog, and the results placed into the |
| # proto area. |
| # |
| # The stage-licenses target causes the license files needed for |
| # packaging to be pulled from $(SRC) and $(CLOSED) and staged in |
| # $(ROOT)/licenses. |
| # |
| install: install1 install2 _msg stage-licenses |
| @cd msg; pwd; $(MAKE) _msg |
| @rm -rf "$(ROOT)/catalog" |
| |
| stage-licenses: install2 |
| @cd pkg; pwd; $(MAKE) stage-licenses |
| |
| install1: mapfiles closedbins sgs |
| |
| install2: install1 .WAIT $(SUBDIRS) |
| |
| _msg: _msgdirs rootdirs FRC |
| @for m in $(MSGSUBDIRS); do \ |
| cd $$m; pwd; $(MAKE) _msg; cd ..; \ |
| done |
| |
| mapfiles: bldtools |
| @cd common/mapfiles; pwd; $(MAKE) install |
| |
| clean: $(SUBDIRS) head pkg |
| clobber: $(SUBDIRS) head pkg clobber_local |
| clobber_local: |
| @cd tools; pwd; $(MAKE) clobber |
| @cd common/mapfiles; pwd; $(MAKE) clobber |
| @cd msg; pwd; $(MAKE) clobber |
| |
| # If the tarballs are included inside ON_CLOSED_BINS, use those to extract and |
| # preserve the permissions (in case a distro ships them). |
| |
| closedbins: bldtools $(ROOTDIRS) FRC |
| @CLOSED_ROOT="$$ON_CLOSED_BINS/root_$(MACH)$${RELEASE_BUILD+-nd}"; \ |
| if [ -f "$$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2" ]; then \ |
| $(ECHO) "Extracting tarball $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2"; \ |
| (cd $(CODEMGR_WS); \ |
| $(TAR) xjpf $$ON_CLOSED_BINS/on-closed-bins$${RELEASE_BUILD+-nd}.$(MACH).tar.bz2); \ |
| CLOSED_ROOT="$(CODEMGR_WS)/closed/root_$(MACH)$${RELEASE_BUILD+-nd}"; \ |
| fi; \ |
| if [ ! -d "$$CLOSED_ROOT" ]; then \ |
| $(ECHO) "Error: ON_CLOSED_BINS must point to closed" \ |
| "binaries."; \ |
| $(ECHO) "root_$(MACH)$${RELEASE_BUILD+-nd} is not" \ |
| "present in $$ON_CLOSED_BINS."; \ |
| exit 1; \ |
| fi; \ |
| $(ECHO) "Copying closed binaries from $$CLOSED_ROOT"; \ |
| (cd $$CLOSED_ROOT; \ |
| $(TAR) cfX - $(CODEMGR_WS)/exception_lists/closed-bins .) | \ |
| (cd $(ROOT); $(TAR) xBpf -); \ |
| ( cd $(ROOT); $(CTFSTRIP) $$(cd $$CLOSED_ROOT; $(FIND) \ |
| ./kernel ./usr/kernel ./platform/*/kernel -type f -a -perm -u+x | \ |
| $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) ) |
| |
| # |
| # Declare what parts can be built in parallel |
| # DUMMY at the end is used in case macro expansion produces an empty string to |
| # prevent everything going in parallel |
| # |
| .PARALLEL: $(PARALLEL_HEADERS) DUMMY |
| .PARALLEL: $(PARALLEL_DIRS) DUMMY |
| |
| $(SUBDIRS) head pkg: FRC |
| @cd $@; pwd; $(MAKE) $(TARGET) |
| |
| # librpcsvc has a dependency on headers installed by |
| # userheaders, hence the .WAIT before libheaders. |
| sgs: rootdirs .WAIT sysheaders userheaders .WAIT \ |
| libheaders cmdheaders |
| |
| # |
| # Top-level setup target to setup the development environment that includes |
| # headers, tools and generated mapfiles. For open-only builds (i.e.: source |
| # trees w/o usr/closed), this also depends on the closedbins target (above) |
| # in order to properly seed the proto area. Note, although the tools are |
| # dependent on a number of constant mapfiles, the tools themselves are |
| # required to build the generated mapfiles. |
| # |
| setup: closedbins bldtools sgs mapfiles |
| |
| bldtools: |
| @cd tools; pwd; $(MAKE) install |
| |
| # /var/mail/:saved is a special case because of the colon in the name. |
| # |
| rootdirs: $(ROOTDIRS) |
| $(INS) -d -m 775 $(ROOT)/var/mail/:saved |
| |
| lint: FRC |
| $(MAKE) -f Makefile.lint |
| |
| _msgdirs: $(MSGDIRS) |
| |
| $(ROOTDIRS) $(MSGDIRS): |
| $(INS.dir) |
| |
| userheaders: FRC |
| @cd head; pwd; $(MAKE) install_h |
| |
| libheaders: bldtools |
| @cd lib; pwd; $(MAKE) install_h |
| |
| sysheaders: FRC |
| @cd uts; pwd; $(MAKE) install_h |
| |
| cmdheaders: FRC |
| @cd cmd/devfsadm; pwd; $(MAKE) install_h |
| @cd cmd/fm; pwd; $(MAKE) install_h |
| @cd cmd/mdb; pwd; $(MAKE) install_h |
| |
| check: $(CHKHDRSUBDIRS) $(CHKMFSTSUBDIRS) $(CHKMANSUBDIRS) |
| |
| # |
| # Cross-reference customization: skip all of the subdirectories that |
| # don't contain actual source code. |
| # |
| XRPRUNE = pkg prototypes |
| XRINCDIRS = uts/common head ucbhead |
| |
| cscope.out tags: FRC |
| $(XREF) -f -x $@ |
| |
| FRC: |
| |
| # used by nightly |
| cc-version: |
| @$(CW) --versions $(CW_CC_COMPILERS) 2>&1 |
| |
| # for older nightlies |
| cc64-version: |
| |
| java-version: |
| @if [ -x "$(JAVAC)" ]; then \ |
| $(ECHO) $(JAVAC); \ |
| $(JAVA_ROOT)/bin/java -fullversion 2>&1 | head -1; \ |
| else \ |
| $(ECHO) No Java compiler found; \ |
| exit 1; \ |
| fi |
| |
| openssl-version: |
| @if [ -x "$(OPENSSL)" ]; then \ |
| $(ECHO) $(OPENSSL); \ |
| $(OPENSSL) version; \ |
| $(OPENSSL) version -f | \ |
| $(SED) -n '/_API/{s/.*_API/ API/;s/ -.*//;p;}'; \ |
| else \ |
| $(ECHO) No OpenSSL utility found; \ |
| fi |