Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
563 B

  1. MY_STATIC_LINK=1
  2. SLIB = sLZMA.lib
  3. PROG = LZMA.dll
  4. SLIBPATH = $O\$(SLIB)
  5. DEF_FILE = LzmaLib.def
  6. CFLAGS = $(CFLAGS) \
  7. LIB_OBJS = \
  8. $O\LzmaLibExports.obj \
  9. C_OBJS = \
  10. $O\Alloc.obj \
  11. $O\LzFind.obj \
  12. $O\LzFindMt.obj \
  13. $O\LzmaDec.obj \
  14. $O\LzmaEnc.obj \
  15. $O\LzmaLib.obj \
  16. $O\Threads.obj \
  17. OBJS = \
  18. $(LIB_OBJS) \
  19. $(C_OBJS) \
  20. $O\resource.res
  21. !include "../../../CPP/Build.mak"
  22. $(SLIBPATH): $O $(OBJS)
  23. lib -out:$(SLIBPATH) $(OBJS) $(LIBS)
  24. $(LIB_OBJS): $(*B).c
  25. $(COMPL_O2)
  26. $(C_OBJS): ../../$(*B).c
  27. $(COMPL_O2)