diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2021-12-27 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2022-03-18 15:35:13 +0500 |
commit | f19f813537c7aea1c20749c914e756b54a9c3cf5 (patch) | |
tree | 816ba62ca7c0fa19f2eb46d9e9d6f7dd7c3a744d /C/Util/7z/makefile.gcc | |
parent | 98e06a519b63b81986abe76d28887f6984a7732b (diff) | |
download | 7zip-21.07.tar.gz 7zip-21.07.tar.bz2 7zip-21.07.zip |
'21.07'21.07
Diffstat (limited to '')
-rw-r--r-- | C/Util/7z/makefile.gcc | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/C/Util/7z/makefile.gcc b/C/Util/7z/makefile.gcc new file mode 100644 index 0000000..4263d67 --- /dev/null +++ b/C/Util/7z/makefile.gcc | |||
@@ -0,0 +1,34 @@ | |||
1 | PROG = 7zdec | ||
2 | |||
3 | LOCAL_FLAGS = -D_7ZIP_PPMD_SUPPPORT | ||
4 | |||
5 | include ../../../CPP/7zip/LzmaDec_gcc.mak | ||
6 | |||
7 | |||
8 | OBJS = \ | ||
9 | $(LZMA_DEC_OPT_OBJS) \ | ||
10 | $O/Bcj2.o \ | ||
11 | $O/Bra.o \ | ||
12 | $O/Bra86.o \ | ||
13 | $O/BraIA64.o \ | ||
14 | $O/CpuArch.o \ | ||
15 | $O/Delta.o \ | ||
16 | $O/Lzma2Dec.o \ | ||
17 | $O/LzmaDec.o \ | ||
18 | $O/Ppmd7.o \ | ||
19 | $O/Ppmd7Dec.o \ | ||
20 | $O/7zCrc.o \ | ||
21 | $O/7zCrcOpt.o \ | ||
22 | $O/Sha256.o \ | ||
23 | $O/Sha256Opt.o \ | ||
24 | $O/7zAlloc.o \ | ||
25 | $O/7zArcIn.o \ | ||
26 | $O/7zBuf.o \ | ||
27 | $O/7zBuf2.o \ | ||
28 | $O/7zDec.o \ | ||
29 | $O/7zMain.o \ | ||
30 | $O/7zFile.o \ | ||
31 | $O/7zStream.o \ | ||
32 | |||
33 | |||
34 | include ../../7zip_gcc_c.mak | ||