2002-07-10 01:38:17 +04:00
|
|
|
SubDir OBOS_TOP src kits ;
|
|
|
|
|
2002-09-03 05:08:53 +04:00
|
|
|
# Collect libopenbeos.so sources.
|
|
|
|
subdirs = app interface support storage ;
|
|
|
|
for subdir in $(subdirs) {
|
|
|
|
local dir = [ FDirName $(SUBDIR) $(subdir) ] ;
|
|
|
|
local file = $(subdir:S=.src) ;
|
|
|
|
include $(file:D=$(dir)) ;
|
|
|
|
UsePrivateHeaders $(subdir) ;
|
|
|
|
UsePublicHeaders $(subdir) ;
|
|
|
|
SEARCH_SOURCE += $(dir) ;
|
|
|
|
}
|
2002-07-10 01:38:17 +04:00
|
|
|
|
2002-09-03 05:08:53 +04:00
|
|
|
UsePublicHeaders [ FDirName add-ons file_system ] ;
|
2002-07-15 19:51:31 +04:00
|
|
|
UsePrivateHeaders shared ;
|
2002-07-10 01:38:17 +04:00
|
|
|
|
2002-09-03 05:08:53 +04:00
|
|
|
# Add subsubdirs to the SEARCH_SOURCE.
|
2002-12-03 20:19:25 +03:00
|
|
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) interface BTextView ] ;
|
2002-09-03 05:08:53 +04:00
|
|
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) storage mime ] ;
|
|
|
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) storage sniffer ] ;
|
2002-07-10 01:38:17 +04:00
|
|
|
|
|
|
|
SharedLibrary openbeos :
|
2002-09-03 05:08:53 +04:00
|
|
|
$(APP_KIT_SOURCE)
|
|
|
|
$(INTERFACE_KIT_SOURCE)
|
|
|
|
$(SUPPORT_KIT_SOURCE)
|
|
|
|
$(STORAGE_KIT_SOURCE)
|
2002-07-10 01:38:17 +04:00
|
|
|
;
|
|
|
|
|
|
|
|
LinkSharedOSLibs libopenbeos.so :
|
2002-09-03 05:08:53 +04:00
|
|
|
libbeadapter.so
|
2002-07-10 01:38:17 +04:00
|
|
|
be
|
|
|
|
stdc++.r4 ;
|
|
|
|
|
2002-09-03 05:08:53 +04:00
|
|
|
# The adapter library we need (Storage Kit).
|
|
|
|
#
|
|
|
|
SharedLibrary beadapter :
|
|
|
|
LibBeAdapter.cpp
|
|
|
|
;
|
|
|
|
LinkSharedOSLibs libbeadapter.so :
|
|
|
|
be
|
|
|
|
;
|
|
|
|
|
2002-07-10 01:38:17 +04:00
|
|
|
# Note: If you want to use /boot/home/config/lib/libopenbeos.so in another
|
|
|
|
# rule, use the identifier <boot!home!config!lib>libopenbeos.so, otherwise
|
|
|
|
# libopenbeos.so.
|
2002-09-03 05:08:53 +04:00
|
|
|
LOCATE on <boot!home!config!lib>libopenbeos.so
|
|
|
|
<boot!home!config!lib>libbeadapter.so = /boot/home/config/lib ;
|
2002-07-17 03:27:01 +04:00
|
|
|
File <boot!home!config!lib>libopenbeos.so : libopenbeos.so ;
|
2002-09-03 05:08:53 +04:00
|
|
|
File <boot!home!config!lib>libbeadapter.so : libbeadapter.so ;
|
|
|
|
Includes <boot!home!config!lib>libopenbeos.so
|
|
|
|
: <boot!home!config!lib>libbeadapter.so ;
|
2002-07-10 01:38:17 +04:00
|
|
|
|
|
|
|
SubInclude OBOS_TOP src kits app ;
|
|
|
|
SubInclude OBOS_TOP src kits interface ;
|
2002-07-11 23:54:20 +04:00
|
|
|
SubInclude OBOS_TOP src kits media ;
|
2002-07-12 01:05:38 +04:00
|
|
|
SubInclude OBOS_TOP src kits midi ;
|
2002-10-31 11:53:41 +03:00
|
|
|
SubInclude OBOS_TOP src kits midi2 ;
|
2002-07-12 01:05:38 +04:00
|
|
|
SubInclude OBOS_TOP src kits screensaver ;
|
2002-07-10 06:00:19 +04:00
|
|
|
SubInclude OBOS_TOP src kits storage ;
|
2002-07-10 01:38:17 +04:00
|
|
|
SubInclude OBOS_TOP src kits support ;
|
|
|
|
SubInclude OBOS_TOP src kits translation ;
|
2002-08-11 04:30:53 +04:00
|
|
|
SubInclude OBOS_TOP src kits device ;
|
|
|
|
SubInclude OBOS_TOP src kits game ;
|
2002-08-27 21:16:53 +04:00
|
|
|
SubInclude OBOS_TOP src kits net ;
|