From 71f590f7f7d1441a2e8d0ddfb854e3a0158fafa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 5 Jul 2004 21:55:56 +0000 Subject: [PATCH] Hello libbe.so! git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8323 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/Jamfile | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/src/kits/Jamfile b/src/kits/Jamfile index ac0c424cb8..cfd3cf1e42 100644 --- a/src/kits/Jamfile +++ b/src/kits/Jamfile @@ -1,6 +1,6 @@ SubDir OBOS_TOP src kits ; -# Allow if defined allows to run applications without the registrar +# If defined allows to run applications without the registrar # -- for development only, of course. if $(RUN_WITHOUT_REGISTRAR) { local defines = [ FDefines RUN_WITHOUT_REGISTRAR ] ; @@ -27,17 +27,31 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) interface BTextView ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) storage mime ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) storage sniffer ] ; -SharedLibrary openbeos : +LIBBE_SOURCE = $(APP_KIT_SOURCE) $(INTERFACE_KIT_SOURCE) $(SUPPORT_KIT_SOURCE) $(STORAGE_KIT_SOURCE) ; +SharedLibrary be : + $(LIBBE_SOURCE) +; + +SharedLibraryFromObjects openbeos : + $(LIBBE_SOURCE:S=.o) +; + +LinkSharedOSLibs libbe.so : + libroot.so # make sure it links against our libroot.so + stdc++.r4 +; + LinkSharedOSLibs libopenbeos.so : libbeadapter.so be - stdc++.r4 ; + stdc++.r4 +; # The adapter library we need (Storage Kit). #