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:
Diffstat (limited to 'CPP/7zip/Compress/PPMD/makefile')
-rwxr-xr-xCPP/7zip/Compress/PPMD/makefile22
1 files changed, 12 insertions, 10 deletions
diff --git a/CPP/7zip/Compress/PPMD/makefile b/CPP/7zip/Compress/PPMD/makefile
index 2e687a70..f146edb0 100755
--- a/CPP/7zip/Compress/PPMD/makefile
+++ b/CPP/7zip/Compress/PPMD/makefile
@@ -1,41 +1,43 @@
PROG = PPMd.dll
DEF_FILE = ../Codec.def
-CFLAGS = $(CFLAGS) -I ../../../
+CFLAGS = $(CFLAGS) -I ../../../ -D_7ZIP_LARGE_PAGES
LIBS = $(LIBS) oleaut32.lib
-PPMD_OBJS = \
+COMPRESS_OBJS = \
+ $O\CodecExports.obj \
$O\DllExports.obj \
PPMD_OPT_OBJS = \
$O\PPMDDecoder.obj \
$O\PPMDEncoder.obj \
-
-COMMON_OBJS = \
- $O\Alloc.obj \
+ $O\PPMDRegister.obj \
7ZIP_COMMON_OBJS = \
$O\InBuffer.obj \
$O\OutBuffer.obj \
$O\StreamUtils.obj \
+C_OBJS = \
+ $O\Alloc.obj \
OBJS = \
$O\StdAfx.obj \
- $(PPMD_OBJS) \
+ $(COMPRESS_OBJS) \
$(PPMD_OPT_OBJS) \
- $(COMMON_OBJS) \
$(7ZIP_COMMON_OBJS) \
+ $(C_OBJS) \
$O\resource.res
!include "../../../Build.mak"
-$(PPMD_OBJS): $(*B).cpp
+$(COMPRESS_OBJS): ../$(*B).cpp
$(COMPL)
$(PPMD_OPT_OBJS): $(*B).cpp
$(COMPL_O2)
-$(COMMON_OBJS): ../../../Common/$(*B).cpp
- $(COMPL)
$(7ZIP_COMMON_OBJS): ../../Common/$(*B).cpp
$(COMPL)
+$(C_OBJS): ../../../../C/$(*B).c
+ $(COMPL_O2)
+