]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Makefiles/ms.lib
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / C / Makefiles / ms.lib
1 ## @file
2 #
3 # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
4 # SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 !INCLUDE ..\Makefiles\ms.common
7
8 LIBRARY = $(LIB_PATH)\$(LIBNAME).lib
9
10 all: $(LIBRARY)
11
12 $(LIBRARY) : $(OBJECTS)
13 -@if not exist $(LIB_PATH) mkdir $(LIB_PATH)
14 $(AR) /nologo /out:$@ $**
15
16 .PHONY:clean
17 clean:
18 del /f /q $(OBJECTS) *.pdb > nul
19
20 .PHONY:cleanall
21 cleanall:
22 del /f /q $(OBJECTS) $(LIBRARY) *.pdb > nul
23
24 !INCLUDE ..\Makefiles\ms.rule
25