1
0
mirror of https://github.com/DSPBluePrints/FactoryBluePrints.git synced 2025-12-09 01:13:30 +08:00

现在使用更高的压缩参数

This commit is contained in:
bWFuanVzYWth
2024-06-13 00:53:17 +08:00
parent 038d782ad6
commit 54e04a0485

View File

@@ -1,10 +1,15 @@
RAR = "C:/Program Files/WinRAR/Rar.exe" RAR = "C:/Program Files/WinRAR/Rar.exe"
GIT = ./MinGit/cmd/git.exe GIT = "C:/Program Files/Git/cmd/git.exe"
FactoryBluePrints.rar: .git update.bat README.md README_EN.md MinGit FactoryBluePrints.rar: .git update.bat README.md README_EN.md MinGit
$(GIT) repack -a -d --depth=4095 --window=4095 $(GIT) repack -a -d --window-memory=0 --depth=4095
$(RAR) a -ma5 -md1024 -m5 -mt32 -htb -s -rr1p -QO+ $@ $^ $(RAR) a -ma5 -md1024 -m5 -mt32 -htb -s -rr1p -QO+ $@ $^
repack:
$(GIT) config core.compression 9
$(GIT) config core.looseCompression 9
$(GIT) config pack.compression 9
$(GIT) repack -a -d -f -F --window-memory=0 --depth=4095
clean: clean:
$(GIT) repack -a -d --depth=4095 --window=4095
rm *.rar rm *.rar