summaryrefslogtreecommitdiffstats
path: root/src/makefile
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2013-02-27 18:58:30 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-03-01 14:30:16 -0600
commitb3d259d970c91fb8ac3b931e5409dd8cecca699f (patch)
tree156802817d5d014f4affd01eaa1a5332c0491054 /src/makefile
parentc51452c00b0e2bf2510d63e6863e3cd9802ee711 (diff)
downloadtalos-hostboot-b3d259d970c91fb8ac3b931e5409dd8cecca699f.tar.gz
talos-hostboot-b3d259d970c91fb8ac3b931e5409dd8cecca699f.zip
Refactoring of the build system.
- Remove unused files for generating LIDs. - Reduce the overall verbosity of the build. - Separate 'config.mk' into a number of smaller, topic-centric files and comment better. - Generalize the 'passes' concept and added an IMAGES pass. - Deprecate most "magic" make variables like EXTRAFOO. - Overall performance improvements. I've tried to reduce the impact of these changes on component-level makefiles. There will be follow-up commit(s) to improve those and decrease the verbosity of some component-owned commands. Change-Id: I6d319f5338eb3946f56b281c3cdd5f341a016fcc Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3368 Reviewed-by: Brian H. Horton <brianh@linux.ibm.com> Tested-by: Jenkins Server Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/makefile b/src/makefile
index 112b7f25a..f0532f3fe 100644
--- a/src/makefile
+++ b/src/makefile
@@ -25,12 +25,11 @@ ROOTPATH = ..
SUBDIRS = kernel.d lib.d libc++.d sys.d usr.d build.d
IMGS = hbicore hbicore_test
-EXTRA_LIDS = dslid
BASE_OBJECTS = console.o spinlock.o string.o string_ext.o stdlib.o ctype.o \
assert.o stdio.o builtins.o vfs_init.o heapmgr.o pagemgr.o \
math.o barrier.o idebug.o intmsghandler.o deferred.o \
- idletask.o splaytree.o
+ idletask.o splaytree.o
ifdef HOSTBOOT_PROFILE
BASE_OBJECTS += gcov.o
@@ -44,7 +43,7 @@ DIRECT_BOOT_OBJECTS = start.o kernel.o taskmgr.o cpumgr.o syscall.o \
ptmgr.o segmentmgr.o basesegment.o devicesegment.o \
block.o cxxtest_data.o cpuid.o misc.o msghandler.o \
blockmsghdlr.o stacksegment.o softpatch_p8.o \
- shutdown.o forceattn_p8.o terminate.o
+ shutdown.o forceattn_p8.o terminate.o
BASE_MODULES = trace errl devicefw scom xscom initservice \
pnor vfs
@@ -90,16 +89,12 @@ hbicore_DATA_MODULES = sample.if p8.dmi.scom.if cen.dmi.scom.if \
p8.as.scom.if p8.nx.scom.if p8.dmi.custom.scom.if \
cen.dmi.custom.scom.if
-hbicore_LIDNUMBER = 80f00100
-
hbicore_test_OBJECTS = ${hbicore_OBJECTS}
hbicore_test_MODULES = ${hbicore_MODULES}
hbicore_test_EXTENDED_MODULES = ${hbicore_EXTENDED_MODULES} ${TESTCASE_MODULES}
hbicore_test_DATA_MODULES = ${hbicore_DATA_MODULES} testdata
-dslid_LIDNUMBER = 80f001fe
-
-IMAGE_EXTRA_TARGETS = buildpnor
+IMAGE_PASS_BODY += buildpnor
include ${ROOTPATH}/config.mk
OpenPOWER on IntegriCloud