Files
HackerSM64/compression/yay0rules.mk
axollyon 854da9c9b1 2.1.0 Lighting Engine (#495)
Updated lighting engine to 2.1.0 (latest version as of 9/22/22)
2022-09-22 18:07:21 -04:00

9 lines
274 B
Makefile

# Compress binary file
$(BUILD_DIR)/%.szp: $(BUILD_DIR)/%.bin
$(call print,Compressing:,$<,$@)
$(V)$(YAY0TOOL) $< $@
# convert binary szp to object file
$(BUILD_DIR)/%.szp.o: $(BUILD_DIR)/%.szp
$(call print,Converting YAY0 to ELF:,$<,$@)
$(V)$(LD) -r -b binary $< -o $@