Build the Haiku registrar (linked against our libroot and libbe). Haven't checked, if it works yet.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10700 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-01-12 14:35:47 +00:00
parent c3362b0a7a
commit 92b98fe111
1 changed files with 16 additions and 2 deletions

View File

@ -6,7 +6,7 @@ UsePrivateHeaders storage ;
AddResources obos_registrar : registrar.rdef ;
Server obos_registrar :
local registrar_sources =
AppInfoList.cpp
ClipboardHandler.cpp
ClipboardTree.cpp
@ -27,8 +27,22 @@ Server obos_registrar :
Watcher.cpp
WatchingService.cpp
;
LinkSharedOSLibs obos_registrar :
Server obos_registrar
:
$(registrar_sources)
:
<boot!home!config!lib>libopenbeos.so
stdc++.r4
be
;
Server registrar
:
# no sources; directly link against the compiled objects
:
[ FGristFiles $(registrar_sources:S=$(SUFOBJ)) ]
libroot.so # Haiku libroot
libbe.so # Haiku libbe
stdc++.r4
;