1 ## @file 2 # Windows makefile for 'LzmaCompress' module build. 3 # 4 # Copyright (c) 2009 - 2016, 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 $(SDK_C)\LzFindMt.obj \ 31 $(SDK_C)\Threads.obj 32 33 !INCLUDE ..\Makefiles\ms.app 34 35 all: $(BIN_PATH)\LzmaF86Compress.bat 36 37 $(BIN_PATH)\LzmaF86Compress.bat: LzmaF86Compress.bat 38 copy LzmaF86Compress.bat $(BIN_PATH)\LzmaF86Compress.bat /Y 39 40 cleanall: localCleanall 41 42 localCleanall: 43 del /f /q $(BIN_PATH)\LzmaF86Compress.bat > nul 44