aboutsummaryrefslogtreecommitdiff
path: root/C/Util/7z/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'C/Util/7z/makefile')
-rw-r--r--C/Util/7z/makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/C/Util/7z/makefile b/C/Util/7z/makefile
new file mode 100644
index 0000000..9a49fd5
--- /dev/null
+++ b/C/Util/7z/makefile
@@ -0,0 +1,40 @@
1CFLAGS = $(CFLAGS) -D_7ZIP_PPMD_SUPPPORT
2
3PROG = 7zDec.exe
4
5C_OBJS = \
6 $O\7zAlloc.obj \
7 $O\7zBuf.obj \
8 $O\7zCrc.obj \
9 $O\7zCrcOpt.obj \
10 $O\7zFile.obj \
11 $O\7zDec.obj \
12 $O\7zArcIn.obj \
13 $O\7zStream.obj \
14 $O\Bcj2.obj \
15 $O\Bra.obj \
16 $O\Bra86.obj \
17 $O\BraIA64.obj \
18 $O\CpuArch.obj \
19 $O\Delta.obj \
20 $O\Lzma2Dec.obj \
21 $O\LzmaDec.obj \
22 $O\Ppmd7.obj \
23 $O\Ppmd7Dec.obj \
24
257Z_OBJS = \
26 $O\7zMain.obj \
27
28OBJS = \
29 $O\Precomp.obj \
30 $(7Z_OBJS) \
31 $(C_OBJS) \
32
33!include "../../../CPP/Build.mak"
34
35$(7Z_OBJS): $(*B).c
36 $(CCOMPL_USE)
37$(C_OBJS): ../../$(*B).c
38 $(CCOMPL_USE)
39$O\Precomp.obj: Precomp.c
40 $(CCOMPL_PCH)