aboutsummaryrefslogtreecommitdiff
path: root/C/Util/Lzma/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/Lzma/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/Lzma/makefile')
-rw-r--r--C/Util/Lzma/makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/C/Util/Lzma/makefile b/C/Util/Lzma/makefile
new file mode 100644
index 0000000..7813bdb
--- /dev/null
+++ b/C/Util/Lzma/makefile
@@ -0,0 +1,30 @@
1# MY_STATIC_LINK=1
2PROG = LZMAc.exe
3
4CFLAGS = $(CFLAGS) \
5
6LIB_OBJS = \
7 $O\LzmaUtil.obj \
8
9C_OBJS = \
10 $O\Alloc.obj \
11 $O\CpuArch.obj \
12 $O\LzFind.obj \
13 $O\LzFindMt.obj \
14 $O\LzFindOpt.obj \
15 $O\LzmaDec.obj \
16 $O\LzmaEnc.obj \
17 $O\7zFile.obj \
18 $O\7zStream.obj \
19 $O\Threads.obj \
20
21OBJS = \
22 $(LIB_OBJS) \
23 $(C_OBJS) \
24
25!include "../../../CPP/Build.mak"
26
27$(LIB_OBJS): $(*B).c
28 $(COMPL_O2)
29$(C_OBJS): ../../$(*B).c
30 $(COMPL_O2)