(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:
@@ -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 ;
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
SubDir OBOS_TOP src kernel apps cpuinfo ;
|
||||
|
||||
KernelObjects <$(SOURCE_GRIST)>main.c : -fpic ;
|
||||
KernelObjects
|
||||
<$(SOURCE_GRIST)>main.c
|
||||
:
|
||||
-fpic
|
||||
;
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
SubDir OBOS_TOP src kernel apps fortune ;
|
||||
|
||||
KernelObjects <$(SOURCE_GRIST)>main.c : -fpic ;
|
||||
KernelObjects
|
||||
<$(SOURCE_GRIST)>main.c
|
||||
:
|
||||
-fpic
|
||||
;
|
||||
|
||||
@@ -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
|
||||
;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user