Rev 3597 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3597 | Rev 4377 | ||
---|---|---|---|
Line 27... | Line 27... | ||
27 | # |
27 | # |
28 | 28 | ||
29 | ## Setup toolchain |
29 | ## Setup toolchain |
30 | # |
30 | # |
31 | 31 | ||
32 | include ../../Makefile.config |
- | |
33 | - | ||
34 | LIBC_PREFIX = ../../lib/libc |
32 | LIBC_PREFIX = ../../lib/libc |
35 | SOFTINT_PREFIX = ../../lib/softint |
33 | SOFTINT_PREFIX = ../../lib/softint |
- | 34 | ||
36 | include $(LIBC_PREFIX)/Makefile.toolchain |
35 | include $(LIBC_PREFIX)/Makefile.toolchain |
37 | 36 | ||
38 | LIBS = $(LIBC_PREFIX)/libc.a |
37 | LIBS = $(LIBC_PREFIX)/libc.a |
39 | 38 | ||
40 | ## Sources |
39 | ## Sources |
Line 52... | Line 51... | ||
52 | all: $(OUTPUT) $(OUTPUT).disasm |
51 | all: $(OUTPUT) $(OUTPUT).disasm |
53 | 52 | ||
54 | -include Makefile.depend |
53 | -include Makefile.depend |
55 | 54 | ||
56 | clean: |
55 | clean: |
57 | -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend |
56 | -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS) |
58 | 57 | ||
59 | depend: |
58 | depend: |
60 | $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend |
59 | $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend |
61 | 60 | ||
62 | $(OUTPUT): $(OBJECTS) $(LIBS) |
61 | $(OUTPUT): $(OBJECTS) $(LIBS) |
63 | $(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map |
62 | $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map |
64 | 63 | ||
65 | disasm: $(OUTPUT).disasm |
64 | disasm: $(OUTPUT).disasm |
66 | 65 | ||
67 | $(OUTPUT).disasm: $(OUTPUT) |
66 | $(OUTPUT).disasm: $(OUTPUT) |
68 | $(OBJDUMP) -d $< >$@ |
67 | $(OBJDUMP) -d $< >$@ |