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>2007-07-24 04:00:00 +0400
committerKornel LesiƄski <kornel@geekhood.net>2016-05-28 02:15:52 +0300
commit980e181dcc9d64312a4dddfa58f80770506f27f5 (patch)
tree4ab20c1b4c7ebfe0f5fbf39ec2ce2cd3022ebf66 /CPP/7zip/Bundles/Format7zExtract/makefile
parent7038848692e7049234f223703522681a19db49a5 (diff)
4.50 beta
Diffstat (limited to 'CPP/7zip/Bundles/Format7zExtract/makefile')
-rwxr-xr-xCPP/7zip/Bundles/Format7zExtract/makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/CPP/7zip/Bundles/Format7zExtract/makefile b/CPP/7zip/Bundles/Format7zExtract/makefile
index a2362869..10bec119 100755
--- a/CPP/7zip/Bundles/Format7zExtract/makefile
+++ b/CPP/7zip/Bundles/Format7zExtract/makefile
@@ -118,11 +118,6 @@ PPMD_OPT_OBJS = \
AES_OPT_OBJS = \
$O\MyAES.obj \
-AES_ORIG_OBJS = \
- $O\aescrypt.obj \
- $O\aeskey.obj \
- $O\aestab.obj \
-
CRYPTO_HASH_OBJS = \
$O\Sha256.obj \
@@ -138,6 +133,9 @@ C_BRANCH_OBJS = \
$O\BranchSPARC.obj \
$O\BranchX86.obj \
+C_CRYPTO = \
+ $O\Aes.obj \
+
!include "../../Crc2.mak"
OBJS = \
@@ -161,10 +159,10 @@ OBJS = \
$(PPMD_OPT_OBJS) \
$(7ZAES_OPT_OBJS) \
$(AES_OPT_OBJS) \
- $(AES_ORIG_OBJS) \
$(CRYPTO_HASH_OBJS) \
$(C_OBJS) \
$(C_BRANCH_OBJS) \
+ $(C_CRYPTO) \
$(CRC_OBJS) \
$O\resource.res
@@ -208,8 +206,6 @@ $(PPMD_OPT_OBJS): ../../Compress/PPMD/$(*B).cpp
$(AES_OPT_OBJS): ../../Crypto/AES/$(*B).cpp
$(COMPL_O2)
-$(AES_ORIG_OBJS): ../../Crypto/AES/$(*B).c
- $(COMPL_O2_W3)
$(7ZAES_OPT_OBJS): ../../Crypto/7zAES/$(*B).cpp
$(COMPL_O2)
$(CRYPTO_HASH_OBJS): ../../Crypto/Hash/$(*B).cpp
@@ -218,5 +214,7 @@ $(C_OBJS): ../../../../C/$(*B).c
$(COMPL_O2)
$(C_BRANCH_OBJS): ../../../../C/Compress/Branch/$(*B).c
$(COMPL_O2)
+$(C_CRYPTO): ../../../../C/Crypto/$(*B).c
+ $(COMPL_O2)
!include "../../Crc.mak"