Implemented separate "minor.mk" files for SRC and UDK builds so that a UDK build does not break SRC builds. Now, settings.mk will strip $(UPD) from $(WORK_STAM) to determine $(BUILDTYPE). If $(BUILDTYPE) is "UDK", udkminor.mk will be included. Else, minor.mk will be included. Note that additional .ELIF statements can be added for any additional products that need to be build (e.g. StarPortal, etc.).

This commit is contained in:
Patrick Luby
2000-09-25 14:42:58 +00:00
parent 58617b2441
commit 6cd2971c75
2 changed files with 12 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
RSCVERSION=202
RSCREVISION=202a(Build:5593)
BUILD=5593
RSCVERSION=604
RSCREVISION=604a(Build:5573)
BUILD=5573
LAST_MINOR=a
SOURCEVERSION=UDK202
SOURCEVERSION=SRC604

View File

@@ -7,8 +7,8 @@
#* Entwicklungtools-Definitionen
#*
#* Ersterstellung TH 28.03.94
#* Letzte Aenderung $Author: hr $ $Date: 2000-09-20 14:43:17 $
#* $Revision: 1.1.1.1 $
#* Letzte Aenderung $Author: patrick.luby $ $Date: 2000-09-25 15:42:58 $
#* $Revision: 1.2 $
#*
#* $Logfile: T:/solar/inc/settings.mkv $
#*
@@ -40,7 +40,13 @@ dmake_test_version:
SOLARVERSION=$(SOLARVER)$/$(UPD)
.ENDIF
BUILDTYPE:=${WORK_STAMP:s/$(UPD)//}
.IF "$(BUILDTYPE)=="UDK"
.INCLUDE : udkminor.mk
.ELSE
# Default to "SRC" build type
.INCLUDE : minor.mk
.ENDIF
.IF "$(BUILD_SOSL)"==""