Compress base.img using FastLZ library

This commit is contained in:
2025-11-09 21:38:27 +01:00
parent e4a5c07b3d
commit 02d60129b1
58 changed files with 3676 additions and 10 deletions

14
FastLZ/examples/Makefile.win Executable file
View File

@ -0,0 +1,14 @@
CC=cl.exe
CFLAGS=/Wall
RM=del
all: 6pack 6unpack
6pack: 6pack.c ../fastlz.c
$(CC) -o 6pack $(CFLAGS) -I.. 6pack.c ../fastlz.c
6unpack: 6unpack.c ../fastlz.c
$(CC) -o 6unpack $(CFLAGS) -I.. 6unpack.c ../fastlz.c
clean :
$(RM) 6pack.exe 6unpack.exe *.obj