Rev 76 | Rev 171 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 76 | Rev 111 | ||
---|---|---|---|
Line 68... | Line 68... | ||
68 | find . ../include -name arch -type l -exec rm \{\} \; |
68 | find . ../include -name arch -type l -exec rm \{\} \; |
69 | -rm Makefile.depend |
69 | -rm Makefile.depend |
70 | -$(MAKE) clean |
70 | -$(MAKE) clean |
71 | 71 | ||
72 | kernel.bin: $(arch_objects) $(objects) $(test_objects) |
72 | kernel.bin: $(arch_objects) $(objects) $(test_objects) |
73 | $(LD) $(LFLAGS) $(arch_objects) $(objects) $(test_objects) -o $@ >kernel.map |
73 | $(LD) $(LFLAGS) $(arch_objects) $(objects) $(test_objects) -o $@ -Map kernel.map |
74 | 74 | ||
75 | %.s: %.S |
75 | %.s: %.S |
76 | $(CC) $(CPPFLAGS) -E $< >$@ |
76 | $(CC) $(CPPFLAGS) -E $< >$@ |
77 | 77 | ||
78 | %.o: %.s |
78 | %.o: %.s |