mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-03 00:06:37 +00:00
Don't use grouped targets to support very old Make versions
This commit is contained in:
parent
e0889838d2
commit
f2ba27ae98
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -441,11 +441,11 @@ $(BUILD_DIR)/assets/%.bin.inc.c: assets/%.bin
|
|||
$(BUILD_DIR)/assets/%.jpg.inc.c: assets/%.jpg
|
||||
$(ZAPD) bren -eh -i $< -o $@
|
||||
|
||||
$(DISASM_S_FILES) &: $(DISASM_DATA_FILES)
|
||||
$(EXPECTED_DIR)/.disasm: $(DISASM_DATA_FILES)
|
||||
$(PYTHON) tools/disasm/disasm.py $(DISASM_FLAGS) $(DISASM_BASEROM) -o $(EXPECTED_DIR) --split-functions $(EXPECTED_DIR)/functions
|
||||
|
||||
$(EXPECTED_DIR)/%.o: $(EXPECTED_DIR)/%.s
|
||||
$(AS) $(ASFLAGS) $< -o $@
|
||||
$(EXPECTED_DIR)/%.o: $(EXPECTED_DIR)/.disasm
|
||||
$(AS) $(ASFLAGS) $(@:.o=.s) -o $@
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
|
|
Loading…
Reference in a new issue