Files

9 lines
279 B
Makefile
Raw Permalink Normal View History

# Compress binary file
$(BUILD_DIR)/%.szp: $(BUILD_DIR)/%.bin
$(call print,Compressing:,$<,$@)
$(V)$(RNCPACK) p $< $@ -m1
# convert binary szp to object file
$(BUILD_DIR)/%.szp.o: $(BUILD_DIR)/%.szp
2021-01-30 20:43:39 -05:00
$(call print,Converting RNC1 to ELF:,$<,$@)
$(V)$(LD) -r -b binary $< -o $@