Index: trunk/i386/boot0/Makefile =================================================================== --- trunk/i386/boot0/Makefile (revision 2408) +++ trunk/i386/boot0/Makefile (revision 2409) @@ -17,6 +17,9 @@ all: $(DIRS_NEEDED) $(OBJS) +#To rebuild boot0 if boot0.s is touched +$(SYMROOT)/boot0: boot0.s + $(OBJS): $(SRCROOT)/autoconf.inc @echo " [NASM] $(@F)" @$(NASM) $(@F).s -o $@ Index: trunk/i386/boot1/Makefile =================================================================== --- trunk/i386/boot1/Makefile (revision 2408) +++ trunk/i386/boot1/Makefile (revision 2409) @@ -32,6 +32,9 @@ all: $(DIRS_NEEDED) $(PROGRAMS) +#To rebuild boot1h if boot1h.s is touched +$(SYMROOT)/boot1h: boot1h.s + $(PROGRAMS): $(SRCROOT)/autoconf.inc @echo " [NASM] $(@F)" @$(NASM) $(@F).s -o $@ Index: trunk/CHANGES =================================================================== --- trunk/CHANGES (revision 2408) +++ trunk/CHANGES (revision 2409) @@ -1,3 +1,4 @@ +- Makefile dependency missing for boot0 and boot1h - Temp disable klibc module - Silence output. - Add --no-print-directory.