Added the DiskDevice API to libbe.so (not to libopenbeos.so though). Ready to be tested under Haiku. :-)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9643 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2004-10-29 01:43:16 +00:00
parent 433c716b82
commit 194f93689b
2 changed files with 20 additions and 3 deletions
+7 -3
View File
@@ -27,8 +27,8 @@ for subdir in $(subdirs) {
}
UsePrivateHeaders shared app [ FDirName servers app ] ;
UsePrivateHeaders kernel ;
# for syscalls.h
UsePrivateHeaders kernel ; # for syscalls.h
UsePrivateHeaders [ FDirName kernel disk_device_manager ] ;
UsePrivateHeaders input ;
# Add subsubdirs to the SEARCH_SOURCE.
@@ -43,8 +43,12 @@ LIBBE_SOURCE =
$(STORAGE_KIT_SOURCE)
;
LIBBE_SOURCE_HAIKU_ONLY =
$(STORAGE_KIT_SOURCE_HAIKU_ONLY)
;
SharedLibrary be :
$(LIBBE_SOURCE)
$(LIBBE_SOURCE) $(LIBBE_SOURCE_HAIKU_ONLY)
;
SharedLibraryFromObjects openbeos :
+13
View File
@@ -51,3 +51,16 @@ STORAGE_KIT_SOURCE =
RPatternList.cpp
Rule.cpp
;
STORAGE_KIT_SOURCE_HAIKU_ONLY =
# storage: DiskDevice API
DiskDevice.cpp
DiskDeviceJob.cpp
DiskDevicePrivate.cpp
DiskDeviceRoster.cpp
DiskDeviceTypes.cpp
DiskDeviceVisitor.cpp
DiskSystem.cpp
Partition.cpp
PartitioningInfo.cpp
;