Chameleon

Chameleon Commit Details

Date:2013-12-02 19:56:12 (10 years 4 months ago)
Author:Jief Luce
Commit:2277
Parents: 2276
Message:Makefile dependency missing for boot0 and boot1h (still missing for other bootloader)
Changes:
M/branches/Jief/i386/boot0/Makefile
M/branches/Jief/i386/boot1/Makefile

File differences

branches/Jief/i386/boot0/Makefile
1717
1818
1919
20
21
22
2023
2124
22
25
2326
2427
2528
all: $(DIRS_NEEDED) $(OBJS)
#To rebuild boot0 if boot0.s is touched
$(SYMROOT)/boot0: boot0.s
$(OBJS): $(SRCROOT)/autoconf.inc
@echo "\t[NASM] $(@F)"
@$(NASM) $(@F).s -o $@
$(NASM) $(@F).s -o $@
clean-local:
@for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done
branches/Jief/i386/boot1/Makefile
3232
3333
3434
35
36
37
38
3539
3640
3741
all: $(DIRS_NEEDED) $(PROGRAMS)
#To rebuild boot1h if boot1h.s is touched
$(SYMROOT)/boot1h: boot1h.s
$(PROGRAMS): $(SRCROOT)/autoconf.inc
@echo "\t[NASM] $(@F)"
@$(NASM) $(@F).s -o $@

Archive Download the corresponding diff file

Revision: 2277