diff options
Diffstat (limited to '3rdparty/lzma/CPP/7zip/Sha256.mak')
-rw-r--r-- | 3rdparty/lzma/CPP/7zip/Sha256.mak | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/lzma/CPP/7zip/Sha256.mak b/3rdparty/lzma/CPP/7zip/Sha256.mak new file mode 100644 index 00000000000..0bdbcb60283 --- /dev/null +++ b/3rdparty/lzma/CPP/7zip/Sha256.mak @@ -0,0 +1,13 @@ +COMMON_OBJS = $(COMMON_OBJS) \ + $O\Sha256Prepare.obj + +C_OBJS = $(C_OBJS) \ + $O\Sha256.obj + +!IF defined(USE_C_SHA) || "$(PLATFORM)" == "arm" || "$(PLATFORM)" == "arm64" +C_OBJS = $(C_OBJS) \ + $O\Sha256Opt.obj +!ELSEIF "$(PLATFORM)" != "ia64" && "$(PLATFORM)" != "mips" && "$(PLATFORM)" != "arm" && "$(PLATFORM)" != "arm64" +ASM_OBJS = $(ASM_OBJS) \ + $O\Sha256Opt.obj +!ENDIF |