You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
4 lines
190 B
Makefile
4 lines
190 B
Makefile
# convert binary to object file
|
|
$(BUILD_DIR)/%.szp.o: $(BUILD_DIR)/%.bin
|
|
$(call print,Converting BIN to ELF:,$<,$@)
|
|
$(V)printf ".section .data\n\n.incbin \"$<\"\n" | $(AS) $(ASFLAGS) -o $@
|