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