Home | History | Annotate | Download | only in LzmaCompress
      1 ## @file

      2 # Windows makefile for 'LzmaCompress' module build.

      3 #

      4 # Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>

      5 # This program and the accompanying materials

      6 # are licensed and made available under the terms and conditions of the BSD License

      7 # which accompanies this distribution.  The full text of the license may be found at

      8 # http://opensource.org/licenses/bsd-license.php

      9 #

     10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     12 #

     13 !INCLUDE ..\Makefiles\ms.common
     14 
     15 APPNAME = LzmaCompress
     16 
     17 #LIBS = $(LIB_PATH)\Common.lib

     18 
     19 SDK_C = Sdk\C
     20 
     21 OBJECTS = \
     22   LzmaCompress.obj \
     23   $(SDK_C)\Alloc.obj \
     24   $(SDK_C)\LzFind.obj \
     25   $(SDK_C)\LzmaDec.obj \
     26   $(SDK_C)\LzmaEnc.obj \
     27   $(SDK_C)\7zFile.obj \
     28   $(SDK_C)\7zStream.obj \
     29   $(SDK_C)\Bra86.obj
     30 
     31 !INCLUDE ..\Makefiles\ms.app
     32 
     33 all: $(BIN_PATH)\LzmaF86Compress.bat
     34 
     35 $(BIN_PATH)\LzmaF86Compress.bat: LzmaF86Compress.bat
     36   copy LzmaF86Compress.bat $(BIN_PATH)\LzmaF86Compress.bat /Y
     37 
     38 cleanall: localCleanall
     39 
     40 localCleanall:
     41   del /f /q $(BIN_PATH)\LzmaF86Compress.bat > nul
     42