(Almost) completely rearranged the kernel build; main issues aren't fixed

yet, but the jam problem is gone and some bugs fixed.
We are now using merged objects to bind different functionality together,
which simplified the kernel Jamfile a lot.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1841 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-11-04 19:06:44 +00:00
parent 807212446d
commit 64d41f033f
7 changed files with 149 additions and 484 deletions
+8 -1
View File
@@ -1,6 +1,13 @@
SubDir OBOS_TOP src kernel apps ;
KernelObjects false_main.c fibo_main.c init.c true_main.c sig_test.c ;
KernelObjects
false_main.c
fibo_main.c
init.c
true_main.c
sig_test.c
select_test.c
;
SubInclude OBOS_TOP src kernel apps cpuinfo ;
SubInclude OBOS_TOP src kernel apps echo ;
+5 -1
View File
@@ -1,3 +1,7 @@
SubDir OBOS_TOP src kernel apps cpuinfo ;
KernelObjects <$(SOURCE_GRIST)>main.c : -fpic ;
KernelObjects
<$(SOURCE_GRIST)>main.c
:
-fpic
;
+5 -1
View File
@@ -1,3 +1,7 @@
SubDir OBOS_TOP src kernel apps fortune ;
KernelObjects <$(SOURCE_GRIST)>main.c : -fpic ;
KernelObjects
<$(SOURCE_GRIST)>main.c
:
-fpic
;
+6 -1
View File
@@ -1,3 +1,8 @@
SubDir OBOS_TOP src kernel apps ls ;
KernelObjects <$(SOURCE_GRIST)>main.c : -fpic -Wno-unused ;
KernelObjects
<$(SOURCE_GRIST)>main.c
:
-fpic -Wno-unused
;