summaryrefslogtreecommitdiffstats
path: root/src/boot/Makefile
diff options
context:
space:
mode:
authorShakeeb <shakeebbk@in.ibm.com>2016-08-28 22:23:54 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2016-08-30 06:01:42 -0400
commit593629e88423f3c652c65706d4f4648db26b0fb2 (patch)
treeae2f47deee0fddf7cc016021900a6d35701b1a38 /src/boot/Makefile
parentb6e511f8fe906c566537e79d7fb5f3af1563d3b1 (diff)
downloadtalos-sbe-593629e88423f3c652c65706d4f4648db26b0fb2.tar.gz
talos-sbe-593629e88423f3c652c65706d4f4648db26b0fb2.zip
SBE code restructure: Build directory setup
Change-Id: I5727522fe885260dde54a94b9ae37fd1382a76ff RTC:159709 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28888 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: RAJA DAS <rajadas2@in.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'src/boot/Makefile')
-rw-r--r--src/boot/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/boot/Makefile b/src/boot/Makefile
index 95e29143..11b33a94 100644
--- a/src/boot/Makefile
+++ b/src/boot/Makefile
@@ -6,6 +6,7 @@
# OpenPOWER sbe Project
#
# Contributors Listed Below - COPYRIGHT 2016
+# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -26,7 +27,7 @@ export SUB_OBJDIR = /boot
include img_defs.mk
include bootfiles.mk
-INCLUDES += -I$(IMAGE_SRCDIR)
+INCLUDES += -I$(BUILD_DIR)
OBJS := $(addprefix $(OBJDIR)/, $(BOOT_OBJECTS))
BOOTOBJS += $(OBJS)
@@ -53,8 +54,8 @@ $(OBJDIR)/$(IMAGE_OTPROM_NAME).out: $(OTPROM_LOADER_OBJS) $(LINK_SCRIPT_OTPROM)
# pass the link command file through the C preprocessor to evaluate macros
# and remove comments
-$(LINK_SCRIPT_OTPROM): $(IMAGE_SRCDIR)/linkotprom.cmd
- $(CPP) -I. -E -x c++ -P $(DEFS) $(IMAGE_SRCDIR)/linkotprom.cmd -o $(LINK_SCRIPT_OTPROM)
+$(LINK_SCRIPT_OTPROM): $(LINKER_DIR)/linkotprom.cmd
+ $(CPP) -I$(INCLUDES) -E -x c++ -P $(DEFS) $(LINKER_DIR)/linkotprom.cmd -o $(LINK_SCRIPT_OTPROM)
# ---- Loader Image ------
$(OBJDIR)/$(IMAGE_LOADER_NAME).bin $(OBJDIR)/$(IMAGE_LOADER_NAME).dis: $(OBJDIR)/$(IMAGE_LOADER_NAME).out
@@ -67,8 +68,8 @@ $(OBJDIR)/$(IMAGE_LOADER_NAME).out: $(LOADER_OBJS) $(LINK_SCRIPT_LOADER)
# pass the link command file through the C preprocessor to evaluate macros
# and remove comments
-$(LINK_SCRIPT_LOADER): $(IMAGE_SRCDIR)/linkloader.cmd
- $(CPP) -I. -E -x c++ -P $(DEFS) $(IMAGE_SRCDIR)/linkloader.cmd -o $(LINK_SCRIPT_LOADER)
+$(LINK_SCRIPT_LOADER): $(LINKER_DIR)/linkloader.cmd
+ $(CPP) -I$(INCLUDES) -E -x c++ -P $(DEFS) $(LINKER_DIR)/linkloader.cmd -o $(LINK_SCRIPT_LOADER)
$(OBJDIR):
mkdir -p $(OBJDIR)
OpenPOWER on IntegriCloud