aboutsummaryrefslogtreecommitdiff
path: root/C/Util/Lzma/makefile
diff options
context:
space:
mode:
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)