-#
-# OBJSDEPS is the set of files (defined in the machine dependent
-# template if necessary) which all objects depend on (such as an
-# in-line assembler expansion filter)
-#
-${OBJS}: ${OBJSDEPS}
-
-
-%LOAD
-
-LDOBJS = $(OBJS)
-
-$(COMPONENT).o: $(LDOBJS)
- @echo "creating $(COMPONENT).o"
-
- $(SEG_HACK) __HIB IOHibernateRestoreKernel.o -o _IOHibernateRestoreKernel.o
- mv _IOHibernateRestoreKernel.o IOHibernateRestoreKernel.o
- $(SEG_HACK) __HIB WKdmDecompress.o -o _WKdmDecompress.o
- mv _WKdmDecompress.o WKdmDecompress.o
-
- @echo [ updating $(COMPONENT).o ${IOKIT_KERNEL_CONFIG} ]
- $(LD) $(LDFLAGS_COMPONENT) -o $(COMPONENT).o ${LDOBJS}
-
-do_depend: do_all
- ${MD} -u Makedep -f -d `ls *.d`
-
-
-do_all: $(COMPONENT).o
-
-do_build_all: do_depend
+# Rebuild if per-file overrides change
+${OBJS}: $(firstword $(MAKEFILE_LIST))
+
+# Rebuild if global compile flags change
+$(COBJS): .CFLAGS
+.CFLAGS: ALWAYS
+ $(_v)$(REPLACECONTENTS) $@ $(KCC) $(CFLAGS) $(INCFLAGS)
+$(CXXOBJS): .CXXFLAGS
+.CXXFLAGS: ALWAYS
+ $(_v)$(REPLACECONTENTS) $@ $(KC++) $(CXXFLAGS) $(INCFLAGS)
+$(SOBJS): .SFLAGS
+.SFLAGS: ALWAYS
+ $(_v)$(REPLACECONTENTS) $@ $(S_KCC) $(SFLAGS) $(INCFLAGS)
+
+$(COMPONENT).filelist: $(OBJS)
+ $(_v)for hib_file in ${HIB_FILES}; \
+ do \
+ $(SEG_HACK) -n __HIB -o $${hib_file}__ $${hib_file} || exit 1; \
+ mv $${hib_file}__ $${hib_file} || exit 1; \
+ done
+ @echo "$(ColorL)LDFILELIST$(Color0) $(ColorLF)$(COMPONENT)$(Color0)"
+ $(_v)for obj in ${OBJS}; do \
+ echo $(TARGET)/$(CURRENT_KERNEL_CONFIG)/$${obj}; \
+ done > $(COMPONENT).filelist
+
+do_all: $(COMPONENT).filelist
+
+do_build_all:: do_all