Add hekate loader

This commit is contained in:
CTCaer
2020-07-04 22:12:12 +03:00
parent da0cdf1bd0
commit 1ceb380f6f
12 changed files with 1095 additions and 3 deletions

12
tools/lz/Makefile Normal file
View File

@@ -0,0 +1,12 @@
NATIVE_CC ?= gcc
.PHONY: all clean
all: lz77
@echo > /dev/null
clean:
rm -f lz77
lz77: lz.c lz77.c
@$(NATIVE_CC) -o $@ lz.c lz77.c