mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-11-04 00:36:31 +00:00 
			
		
		
		
	Cc: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			536 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			536 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
## @file
 | 
						|
# Makefiles
 | 
						|
#
 | 
						|
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
 | 
						|
MAKEROOT ?= ../..
 | 
						|
 | 
						|
include $(MAKEROOT)/Makefiles/header.makefile
 | 
						|
 | 
						|
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
 | 
						|
 | 
						|
.PHONY:all
 | 
						|
all: $(MAKEROOT)/bin $(APPLICATION)
 | 
						|
 | 
						|
$(APPLICATION): $(OBJECTS)
 | 
						|
	$(LINKER) -o $(APPLICATION) $(BUILD_LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
 | 
						|
 | 
						|
$(OBJECTS): $(MAKEROOT)/Include/Common/BuildVersion.h
 | 
						|
 | 
						|
include $(MAKEROOT)/Makefiles/footer.makefile
 |