2014-01-27 06:23:15 +01:00
|
|
|
## @file
|
2014-08-28 15:53:34 +02:00
|
|
|
# Makefiles
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
2014-08-28 15:53:34 +02:00
|
|
|
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
MAKEROOT ?= ../..
|
|
|
|
|
|
|
|
include $(MAKEROOT)/Makefiles/header.makefile
|
|
|
|
|
|
|
|
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
|
|
|
|
|
|
|
|
.PHONY:all
|
2019-10-01 14:42:32 +02:00
|
|
|
all: $(MAKEROOT)/bin $(APPLICATION)
|
2014-01-27 06:23:15 +01:00
|
|
|
|
2019-10-01 14:42:32 +02:00
|
|
|
$(APPLICATION): $(OBJECTS)
|
2016-09-29 16:00:22 +02:00
|
|
|
$(LINKER) -o $(APPLICATION) $(BUILD_LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
|
2014-01-27 06:23:15 +01:00
|
|
|
|
2017-11-23 13:48:10 +01:00
|
|
|
$(OBJECTS): $(MAKEROOT)/Include/Common/BuildVersion.h
|
2014-01-27 06:23:15 +01:00
|
|
|
|
|
|
|
include $(MAKEROOT)/Makefiles/footer.makefile
|