aboutsummaryrefslogtreecommitdiff
path: root/C/Util/7z/makefile
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2021-12-27 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2022-03-18 15:35:13 +0500
commitf19f813537c7aea1c20749c914e756b54a9c3cf5 (patch)
tree816ba62ca7c0fa19f2eb46d9e9d6f7dd7c3a744d /C/Util/7z/makefile
parent98e06a519b63b81986abe76d28887f6984a7732b (diff)
download7zip-21.07.tar.gz
7zip-21.07.tar.bz2
7zip-21.07.zip
'21.07'21.07
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)