Subversion Repositories HelenOS

Rev

Rev 293 | Rev 326 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 293 Rev 314
Line 84... Line 84...
84
 
84
 
85
 
85
 
86
kernel.bin: $(arch_objects) $(objects) $(test_objects) ../arch/$(ARCH)/_link.ld debug/real_map.o
86
kernel.bin: $(arch_objects) $(objects) $(test_objects) ../arch/$(ARCH)/_link.ld debug/real_map.o
87
	$(LD) -T ../arch/$(ARCH)/_link.ld $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map
87
	$(LD) -T ../arch/$(ARCH)/_link.ld $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map
88
 
88
 
89
%.s: %.S
89
%.o: %.S
90
	$(CC) $(CPPFLAGS) -E $< >$@
90
	$(CC) $(ASFLAGS) $(CFLAGS) -c $< -o $@
91
 
91
 
92
%.o: %.s
92
%.o: %.s
93
	$(AS) $(ASFLAGS) $< -o $@
93
	$(AS) $(ASFLAGS) $< -o $@
94
 
94
 
95
%.o: %.c
95
%.o: %.c