You've already forked HackerSM64
mirror of
https://github.com/HackerN64/HackerSM64.git
synced 2026-01-21 10:35:32 -08:00
4 lines
149 B
Makefile
4 lines
149 B
Makefile
# convert binary to object file
|
|
$(BUILD_DIR)/%.szp.o: $(BUILD_DIR)/%.bin
|
|
$(call print,Converting BIN to ELF:,$<,$@)
|
|
$(V)$(LD) -r -b binary $< -o $@
|