diff options
Diffstat (limited to 'C/Util/Lzma/makefile')
| -rw-r--r-- | C/Util/Lzma/makefile | 30 |
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 | ||
| 2 | PROG = LZMAc.exe | ||
| 3 | |||
| 4 | CFLAGS = $(CFLAGS) \ | ||
| 5 | |||
| 6 | LIB_OBJS = \ | ||
| 7 | $O\LzmaUtil.obj \ | ||
| 8 | |||
| 9 | C_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 | |||
| 21 | OBJS = \ | ||
| 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) | ||
