X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2FSource%2FC%2FMakefile;h=542818044dd62a707792e7acefca5877c5d8b4d2;hp=367a5dbeadd44d264913eae5df097b57441639b7;hb=ecbaa856da0c94b7054f795d001ee3f5aaee033e;hpb=40d841f6a8f84e75409178e19e69b95e01bada0f diff --git a/BaseTools/Source/C/Makefile b/BaseTools/Source/C/Makefile index 367a5dbead..542818044d 100644 --- a/BaseTools/Source/C/Makefile +++ b/BaseTools/Source/C/Makefile @@ -1,7 +1,7 @@ ## @file # Windows makefile for C tools build. # -# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -10,13 +10,14 @@ # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # -ARCH = IA32 +HOST_ARCH = IA32 !INCLUDE Makefiles\ms.common LIBRARIES = Common APPLICATIONS = \ BootSectImage \ + BrotliCompress \ EfiLdrImage \ EfiRom \ GenBootSector \ @@ -31,7 +32,8 @@ APPLICATIONS = \ Split \ TianoCompress \ VolInfo \ - VfrCompile + VfrCompile \ + DevicePath all: libs apps install @@ -59,6 +61,7 @@ install: $(LIB_PATH) $(BIN_PATH) @echo ###################### @-xcopy $(LIB_PATH)\*.lib $(SYS_LIB_PATH) /I /D /E /F /Y > NUL 2>&1 @-xcopy $(BIN_PATH)\*.exe $(SYS_BIN_PATH) /I /D /E /F /Y > NUL 2>&1 + @-xcopy $(BIN_PATH)\*.bat $(SYS_BIN_PATH) /I /D /E /F /Y > NUL 2>&1 .PHONY: clean clean: @@ -67,7 +70,6 @@ clean: .PHONY: cleanall cleanall: @Makefiles\NmakeSubdirs.bat cleanall $(LIBRARIES) $(APPLICATIONS) - @del /f /q $(BIN_PATH)\*.pdb $(BIN_PATH)\*.ilk !INCLUDE Makefiles\ms.rule