diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2010-09-09 12:08:36 -0500 |
---|---|---|
committer | Patrick Williams <iawillia@us.ibm.com> | 2010-09-09 12:08:36 -0500 |
commit | 80b83026362d07b10ed1ae16afb162f7699757cb (patch) | |
tree | 72532211806986d0243881497cfb5d2f08d583e1 | |
parent | b4f1ab54b36f7dc273b9a80081c019f7d6618715 (diff) | |
download | blackbird-hostboot-80b83026362d07b10ed1ae16afb162f7699757cb.tar.gz blackbird-hostboot-80b83026362d07b10ed1ae16afb162f7699757cb.zip |
Update makefiles to reference ROOTPATH for makefile includes.
-rw-r--r-- | src/kernel/makefile | 2 | ||||
-rw-r--r-- | src/lib/makefile | 2 | ||||
-rw-r--r-- | src/libc++/makefile | 2 | ||||
-rw-r--r-- | src/makefile | 2 | ||||
-rw-r--r-- | src/sys/init/makefile | 2 | ||||
-rw-r--r-- | src/sys/makefile | 2 | ||||
-rw-r--r-- | src/sys/vfs/makefile | 2 | ||||
-rw-r--r-- | src/usr/makefile | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/kernel/makefile b/src/kernel/makefile index 397df1618..5bcb4b43a 100644 --- a/src/kernel/makefile +++ b/src/kernel/makefile @@ -10,5 +10,5 @@ all: ${OBJECTS} clean: (rm -f ${OBJECTS} ) -include ../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/lib/makefile b/src/lib/makefile index 3349ce5bb..19d29f7ad 100644 --- a/src/lib/makefile +++ b/src/lib/makefile @@ -11,4 +11,4 @@ all: ${OBJECTS} clean: (rm -f ${OBJECTS} ) -include ../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/libc++/makefile b/src/libc++/makefile index 1835a238c..8483c15ed 100644 --- a/src/libc++/makefile +++ b/src/libc++/makefile @@ -9,4 +9,4 @@ all: ${OBJECTS} clean: (rm -f ${OBJECTS} ) -include ../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/makefile b/src/makefile index 4117b7946..9a95f0702 100644 --- a/src/makefile +++ b/src/makefile @@ -12,4 +12,4 @@ all: ${SUBDIRS} clean: $(patsubst %.d,%.clean, ${SUBDIRS}) (rm -f ${IMAGES} $(addsuffix .map, ${IMAGES}) ) -include ../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/sys/init/makefile b/src/sys/init/makefile index ba07a8647..8dbde1b7c 100644 --- a/src/sys/init/makefile +++ b/src/sys/init/makefile @@ -9,4 +9,4 @@ all: ${OBJECTS} clean: (rm -f ${OBJECTS} ) -include ../../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/sys/makefile b/src/sys/makefile index 9fd0b8d5c..21909711a 100644 --- a/src/sys/makefile +++ b/src/sys/makefile @@ -8,4 +8,4 @@ all: ${SUBDIRS} clean: $(patsubst %.d,%.clean, ${SUBDIRS}) -include ../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/sys/vfs/makefile b/src/sys/vfs/makefile index 616c8bf43..883e001e3 100644 --- a/src/sys/vfs/makefile +++ b/src/sys/vfs/makefile @@ -9,4 +9,4 @@ all: ${OBJECTS} clean: (rm -f ${OBJECTS} ) -include ../../../config.mk +include ${ROOTPATH}/config.mk diff --git a/src/usr/makefile b/src/usr/makefile index e6907fe8c..13071f2ad 100644 --- a/src/usr/makefile +++ b/src/usr/makefile @@ -6,4 +6,4 @@ all: ${SUBDIRS} clean: $(patsubst %.d,%.clean, ${SUBDIRS}) -include ../../config.mk +include ${ROOTPATH}/config.mk |