Moved KMessage from libbe to libroot.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24984 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-04-16 17:55:55 +00:00
parent 52e06f988d
commit b9f23a3497
2 changed files with 6 additions and 7 deletions

View File

@ -17,7 +17,6 @@ if $(RUN_WITHOUT_APP_SERVER) != 0 {
SubDirC++Flags $(defines) ;
}
UsePrivateHeaders [ FDirName kernel ] # For KMessage.h
UsePrivateHeaders syslog_daemon ; # For syslog.cpp
# Build our libbe.so
@ -25,7 +24,6 @@ UsePrivateHeaders syslog_daemon ; # For syslog.cpp
AddResources libbe.so : libbe_version.rdef ;
SharedLibrary libbe.so :
KMessage.cpp
:
<libbe>app_kit.o
<libbe>interface_kit.o
@ -58,7 +56,6 @@ if $(TARGET_PLATFORM) = libbe_test {
}
SharedLibrary libbe_haiku.so :
KMessage.cpp
syslog.cpp
:
<libbe>app_kit.o
@ -74,9 +71,6 @@ SharedLibrary libbe_haiku.so :
$(TARGET_LIBSTDC++)
;
SEARCH on [ FGristFiles KMessage.cpp ]
= [ FDirName $(HAIKU_TOP) src system kernel messaging ] ;
SEARCH on [ FGristFiles syslog.cpp ]
= [ FDirName $(HAIKU_TOP) src system libroot posix ] ;

View File

@ -1,6 +1,6 @@
SubDir HAIKU_TOP src system libroot os ;
UseHeaders $(TARGET_PRIVATE_KERNEL_HEADERS) : true ;
UsePrivateKernelHeaders ;
MergeObject os_main.o :
area.c
@ -24,8 +24,13 @@ MergeObject os_main.o :
time.c
syscalls.S
wait_for_objects.cpp
KMessage.cpp
;
SEARCH on [ FGristFiles KMessage.cpp ]
= [ FDirName $(HAIKU_TOP) src system kernel messaging ] ;
# We need to specify the dependency on the generated syscalls file explicitly.
Depends [ FGristFiles syscalls.o ] : <syscalls>syscalls.S.inc ;