Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pavlov <ipavlov@users.sourceforge.net>2008-12-31 03:00:00 +0300
committerKornel LesiƄski <kornel@geekhood.net>2016-05-28 02:15:58 +0300
commit3a524e5ba2d7bb0c46e11502822f8093dd2ab0f4 (patch)
treeb33da9cac0a5fc22a16bdf4de106c8a9eefd1465 /CPP/7zip/Bundles/SFXSetup
parentc1f1243a70558e86e14b1ea09dc287737378894b (diff)
4.634.63
Diffstat (limited to 'CPP/7zip/Bundles/SFXSetup')
-rwxr-xr-xCPP/7zip/Bundles/SFXSetup/SFXSetup.dsp50
-rwxr-xr-xCPP/7zip/Bundles/SFXSetup/makefile34
2 files changed, 18 insertions, 66 deletions
diff --git a/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp b/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp
index 6a493519..1f5d99cb 100755
--- a/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp
+++ b/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp
@@ -243,75 +243,43 @@ SOURCE=..\..\Archive\Common\OutStreamWithCRC.h
# Begin Group "Compress"
# PROP Default_Filter ""
-# Begin Group "LZMA"
-
-# PROP Default_Filter ""
-# Begin Source File
-
-SOURCE=..\..\Compress\LZMA\LZMADecoder.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\Compress\LZMA\LZMARegister.cpp
-# End Source File
-# End Group
-# Begin Group "Branch"
-
-# PROP Default_Filter ""
-# Begin Source File
-
-SOURCE=..\..\Compress\Branch\BCJ2Register.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\Compress\Branch\BCJRegister.cpp
-# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Branch\BranchCoder.cpp
+SOURCE=..\..\Compress\Bcj2Coder.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Branch\BranchCoder.h
+SOURCE=..\..\Compress\Bcj2Register.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Branch\x86.cpp
+SOURCE=..\..\Compress\BcjCoder.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Branch\x86_2.cpp
+SOURCE=..\..\Compress\BcjRegister.cpp
# End Source File
-# End Group
-# Begin Group "Copy"
-
-# PROP Default_Filter ""
# Begin Source File
-SOURCE=..\..\Compress\Copy\CopyCoder.cpp
+SOURCE=..\..\Compress\BranchCoder.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Copy\CopyCoder.h
+SOURCE=..\..\Compress\CopyCoder.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\Copy\CopyRegister.cpp
+SOURCE=..\..\Compress\CopyRegister.cpp
# End Source File
-# End Group
-# Begin Group "LZ"
-
-# PROP Default_Filter ""
# Begin Source File
-SOURCE=..\..\Compress\LZ\LZOutWindow.cpp
+SOURCE=..\..\Compress\LzmaDecoder.cpp
# End Source File
# Begin Source File
-SOURCE=..\..\Compress\LZ\LZOutWindow.h
+SOURCE=..\..\Compress\LzmaRegister.cpp
# End Source File
# End Group
-# End Group
# Begin Group "Common"
# PROP Default_Filter ""
diff --git a/CPP/7zip/Bundles/SFXSetup/makefile b/CPP/7zip/Bundles/SFXSetup/makefile
index 0d4255d1..44ffc9c6 100755
--- a/CPP/7zip/Bundles/SFXSetup/makefile
+++ b/CPP/7zip/Bundles/SFXSetup/makefile
@@ -79,23 +79,16 @@ AR_COMMON_OBJS = \
$O\7zIn.obj \
$O\7zRegister.obj \
-BRANCH_OPT_OBJS = \
- $O\x86.obj \
- $O\x86_2.obj \
+COMPRESS_OBJS = \
$O\BranchCoder.obj \
- $O\BCJRegister.obj \
- $O\BCJ2Register.obj \
-
-COPY_OBJS = \
+ $O\Bcj2Coder.obj \
+ $O\Bcj2Register.obj \
+ $O\BcjCoder.obj \
+ $O\BcjRegister.obj \
$O\CopyCoder.obj \
$O\CopyRegister.obj \
-
-LZ_OBJS = \
- $O\LZOutWindow.obj \
-
-LZMA_OPT_OBJS = \
- $O\LZMADecoder.obj \
- $O\LZMARegister.obj \
+ $O\LzmaDecoder.obj \
+ $O\LzmaRegister.obj \
C_OBJS = \
$O\Alloc.obj \
@@ -116,10 +109,7 @@ OBJS = \
$(FM_OBJS)\
$(AR_COMMON_OBJS) \
$(7Z_OBJS) \
- $(BRANCH_OPT_OBJS) \
- $(COPY_OBJS) \
- $(LZ_OBJS) \
- $(LZMA_OPT_OBJS) \
+ $(COMPRESS_OBJS) \
$O\MyMessages.obj \
$(C_OBJS) \
$(CRC_OBJS) \
@@ -148,13 +138,7 @@ $(AR_COMMON_OBJS): ../../Archive/Common/$(*B).cpp
$(7Z_OBJS): ../../Archive/7z/$(*B).cpp
$(COMPL)
-$(BRANCH_OPT_OBJS): ../../Compress/Branch/$(*B).cpp
- $(COMPL)
-$(COPY_OBJS): ../../Compress/Copy/$(*B).cpp
- $(COMPL)
-$(LZ_OBJS): ../../Compress/LZ/$(*B).cpp
- $(COMPL)
-$(LZMA_OPT_OBJS): ../../Compress/LZMA/$(*B).cpp
+$(COMPRESS_OBJS): ../../Compress/$(*B).cpp
$(COMPL)
$O\MyMessages.obj: ../../UI/Explorer/MyMessages.cpp