Compress base.img using FastLZ library
This commit is contained in:
14
FastLZ/examples/Makefile.win
Executable file
14
FastLZ/examples/Makefile.win
Executable 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
|
||||
Reference in New Issue
Block a user