Remove redundant s2d directory and delete unused files/defines (#457)

This commit is contained in:
thecozies
2022-09-21 20:18:37 -05:00
committed by GitHub
parent 2e701ad9e7
commit de34eb3b84
80 changed files with 16 additions and 18714 deletions

9
compression/rnc2rules.mk Normal file
View File

@@ -0,0 +1,9 @@
# Compress binary file
$(BUILD_DIR)/%.szp: $(BUILD_DIR)/%.bin
$(call print,Compressing:,$<,$@)
$(V)$(RNCPACK) p $< $@ -m2
# convert binary szp to object file
$(BUILD_DIR)/%.szp.o: $(BUILD_DIR)/%.szp
$(call print,Converting RNC2 to ELF:,$<,$@)
$(V)$(LD) -r -b binary $< -o $@