]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Makefiles/app.makefile
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / C / Makefiles / app.makefile
1 ## @file
2 # Makefiles
3 #
4 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 #
7
8 MAKEROOT ?= ../..
9
10 include $(MAKEROOT)/Makefiles/header.makefile
11
12 APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
13
14 .PHONY:all
15 all: $(MAKEROOT)/bin $(APPLICATION)
16
17 $(APPLICATION): $(OBJECTS)
18 $(LINKER) -o $(APPLICATION) $(BUILD_LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
19
20 $(OBJECTS): $(MAKEROOT)/Include/Common/BuildVersion.h
21
22 include $(MAKEROOT)/Makefiles/footer.makefile