Makefile.master (f2fc321be9b4df7748e8c31a5edd154b0177b139) | Makefile.master (2032ea7bd13069ba4884066ed18f83bf12b3e247) |
---|---|
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 --- 860 unchanged lines hidden (view full) --- 869# 870# The ONVERS macro sets the default value for the VERSION string 871# within pkginfo. 872# 873# The following list of macros are used in the definition of RELEASE_CM 874# which is used to label all binaries in the build: 875# 876# RELEASE Specific release of the build, eg: 5.2 | 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 --- 860 unchanged lines hidden (view full) --- 869# 870# The ONVERS macro sets the default value for the VERSION string 871# within pkginfo. 872# 873# The following list of macros are used in the definition of RELEASE_CM 874# which is used to label all binaries in the build: 875# 876# RELEASE Specific release of the build, eg: 5.2 |
877# RELEASE_MAJOR Major version number part of $(RELEASE) 878# RELEASE_MINOR Minor version number part of $(RELEASE) |
|
877# VERSION Version of the build (alpha, beta, Generic) 878# PATCHID If this is a patch this value should contain 879# the patchid value (eg: "Generic 100832-01"), otherwise 880# it will be set to $(VERSION) 881# RELEASE_DATE Date of the Release Build 882# PATCH_DATE Date the patch was created, if this is blank it 883# will default to the RELEASE_DATE 884# 885ONVERS= "11.11" | 879# VERSION Version of the build (alpha, beta, Generic) 880# PATCHID If this is a patch this value should contain 881# the patchid value (eg: "Generic 100832-01"), otherwise 882# it will be set to $(VERSION) 883# RELEASE_DATE Date of the Release Build 884# PATCH_DATE Date the patch was created, if this is blank it 885# will default to the RELEASE_DATE 886# 887ONVERS= "11.11" |
886RELEASE= 5.11 | 888RELEASE_MAJOR= 5 889RELEASE_MINOR= 11 890RELEASE= $(RELEASE_MAJOR).$(RELEASE_MINOR) |
887VERSION= SunOS Development 888PATCHID= $(VERSION) 889RELEASE_DATE= October 2007 890PATCH_DATE= $(RELEASE_DATE) 891RELEASE_CM= "@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)" 892DEV_CM= "@($(POUND_SIGN))SunOS Internal Development: \ 893`$(ECHO) $$LOGNAME` `date +%Y-%m-%d` `$(ECHO) [\`basename $$CODEMGR_WS\`]`" 894 --- 174 unchanged lines hidden --- | 891VERSION= SunOS Development 892PATCHID= $(VERSION) 893RELEASE_DATE= October 2007 894PATCH_DATE= $(RELEASE_DATE) 895RELEASE_CM= "@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)" 896DEV_CM= "@($(POUND_SIGN))SunOS Internal Development: \ 897`$(ECHO) $$LOGNAME` `date +%Y-%m-%d` `$(ECHO) [\`basename $$CODEMGR_WS\`]`" 898 --- 174 unchanged lines hidden --- |