Changeset 1403 for trunk/kBuild
- Timestamp:
- Mar 17, 2008, 12:34:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r1400 r1403 131 131 # Equal character. 132 132 EQUAL := = 133 134 135 # 136 # The list of standard build types in kBuild. 137 # 138 # This list can be extended in Config.kmk and it's possible to extend 139 # (inherit) another build type. 140 # 141 KBUILD_BLD_TYPES := releases profile debug 133 142 134 143 … … 1027 1036 1028 1037 1038 # 1039 # Validate any KBUILD_BLD_TYPES additions and finally the BUILD_TYPE. 1040 # 1041 if1of ($(KBUILD_BLD_TYPES), $(KBUILD_OSES)) 1042 $(error kBuild: found KBUILD_BLD_TYPES in KBUILD_OSES!) 1043 endif 1044 if1of ($(KBUILD_BLD_TYPES), $(KBUILD_ARCHES)) 1045 $(error kBuild: found KBUILD_BLD_TYPES in KBUILD_ARCHES!) 1046 endif 1047 if1of ($(KBUILD_OSES), $(KBUILD_ARCHES)) 1048 $(error kBuild: found KBUILD_OSES in KBUILD_ARCHES!) 1049 endif 1050 ifn1of ($(BUILD_TYPE), $(KBUILD_BLD_TYPES)) 1051 $(error kBuild: BUILD_TYPE(=$(BUILD_TYPE)) is not found in KBUILD_BLD_TYPES(=$(KBUILD_BLD_TYPES))!) 1052 endif 1053 1054 1055 1029 1056 ifdef KBUILD_PROFILE_SELF 1030 1057 _KBUILD_TS_HEADER_END := $(nanots )
Note:
See TracChangeset
for help on using the changeset viewer.