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

12
FastLZ/examples/Makefile Normal file
View File

@ -0,0 +1,12 @@
CFLAGS?=-Wall -std=c90
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 6unpack *.o