More detailed compile
This commit is contained in:
parent
621327f062
commit
65d4fc76d8
1 changed files with 8 additions and 4 deletions
12
Makefile
12
Makefile
|
@ -45,9 +45,13 @@ $(BUILD)/gdb.lst: | $(BUILD)
|
|||
done
|
||||
|
||||
.PRECIOUS: $(BUILD)/%.o
|
||||
$(BUILD)/%.o: %.s | $(BUILD)
|
||||
$(BUILD)/%.o: $(BUILD)/%.o.asm | $(BUILD)
|
||||
$(call source_compile,-c)
|
||||
|
||||
.PRECIOUS: $(BUILD)/%.o
|
||||
$(BUILD)/%.o: %.c | $(BUILD)
|
||||
$(call source_compile,-c)
|
||||
.PRECIOUS: $(BUILD)/%.o.asm
|
||||
$(BUILD)/%.o.asm: %.s | $(BUILD)
|
||||
$(call source_compile,-S)
|
||||
|
||||
.PRECIOUS: $(BUILD)/%.o.asm
|
||||
$(BUILD)/%.o.asm: %.c | $(BUILD)
|
||||
$(call source_compile,-S)
|
Loading…
Add table
Reference in a new issue