Changeset 9178 for trunk/make/process.mak
- Timestamp:
- Aug 30, 2002, 9:45:30 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/make/process.mak
r9165 r9178 1 # $Id: process.mak,v 1.2 5 2002-08-29 10:01:40bird Exp $1 # $Id: process.mak,v 1.26 2002-08-30 19:45:29 bird Exp $ 2 2 3 3 # … … 977 977 !ifdef SUBDIRS_MISC 978 978 _SUBDIRS_MISC = _subdir_misc 979 $( SUBDIRS_MISC):979 $(_SUBDIRS_MISC): 980 980 @$(TOOL_DODIRS) "$(SUBDIRS_MISC)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) miscellaneous 981 981 !else … … 1124 1124 1125 1125 1126 # ----------------------------------------------------------------------------- 1127 # Pass x - The packing rule - traverse subdirs etc. 1128 # ----------------------------------------------------------------------------- 1129 !ifdef SUBDIRS_PACKING 1130 _SUBDIRS_PACKING = _subdir_packing 1131 $(_SUBDIRS_PACKING): 1132 @$(TOOL_DODIRS) "$(SUBDIRS_PACKING)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) packing 1133 !else 1134 ! ifdef SUBDIRS 1135 _SUBDIRS_PACKING = _subdir_packing 1136 $(_SUBDIRS_PACKING): 1137 @$(TOOL_DODIRS) "$(SUBDIRS)" $(TOOL_MAKE) -f $(BUILD_MAKEFILE) packing 1138 ! endif 1139 !endif 1140 1141 !ifdef PREMAKEFILES_PACKING 1142 _PREMAKEFILES_PACKING = _premakefiles_packing 1143 $(PREMAKEFILES_PACKING): 1144 @$(TOOL_DOMAKES) "$(PREMAKEFILES_PACKING)" $(TOOL_MAKE) packing 1145 !else 1146 ! ifdef PREMAKEFILES 1147 _PREMAKEFILES_PACKING = _premakefiles_packing 1148 $(_PREMAKEFILES_PACKING): 1149 @$(TOOL_DOMAKES) "$(PREMAKEFILES)" $(TOOL_MAKE) packing 1150 ! endif 1151 !endif 1152 1153 !if "$(RULE_PACKING)" == "packing" 1154 _packing: \ 1155 !else 1156 packing: \ 1157 !endif 1158 $(_SUBDIRS_PACKING) $(_PREMAKEFILES_PACKING) $(RULE_PACKING) 1159 !ifdef POSTMAKEFILES_PACKING 1160 @$(TOOL_DOMAKES) "$(POSTMAKEFILES_PACKING)" $(TOOL_MAKE) $@ 1161 !else 1162 ! ifdef POSTMAKEFILES 1163 @$(TOOL_DOMAKES) "$(POSTMAKEFILES)" $(TOOL_MAKE) $@ 1164 ! endif 1165 !endif 1166 $(ECHO) .$(CLRRST) 1167 1168 1126 1169 1127 1170 # ----------------------------------------------------------------------------- … … 1174 1217 # ----------------------------------------------------------------------------- 1175 1218 !if "$(TARGET_MODE)" == "EXE" || "$(TARGET_MODE)" == "DLL" || "$(TARGET_MODE)" == "SYS" || "$(TARGET_MODE)" == "IFS" || "$(TARGET_MODE)" == "VDD" 1176 $(TARGET): $(TARGET_OBJS) $(TARGET_RES) $(TARGET_DEF_LINK) $(TARGET_LNK) $(TARGET_DEPS) 1219 $(TARGET): $(TARGET_OBJS) $(TARGET_RES) $(TARGET_DEF_LINK) $(TARGET_LNK) $(TARGET_DEPS) $(TARGET_LIBS) 1177 1220 !if "$(TOOL_JOB_WAIT)" != "" 1178 1221 ! ifndef BUILD_QUIET … … 1559 1602 1560 1603 !endif #!TESTCASE 1604 1605 1606 # 1607 # Include system library dependency stubs. 1608 # 1609 !include $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)libs.mk 1610 1611 1612 # 1613 # Check if TARGET_ALWAYS needs to be forced built. 1614 # 1615 !if "$(TARGET_ALWAYS)" != "" 1616 ! ifndef BUILD_FORCED_BUILD_TEST 1617 ! if [$(TOOL_MAKE) BUILD_FORCED_BUILD_TEST=1 -f $(MAKEFILE) -q $(TARGET) $(TARGET_ILIB)] != 0 1618 $(TARGET_ALWAYS): .force 1619 ! endif 1620 ! endif 1621 !endif 1622 1623
Note:
See TracChangeset
for help on using the changeset viewer.