2005-10-29 16:27:43 +00:00
|
|
|
SubDir HAIKU_TOP src kits app ;
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2005-08-05 09:56:03 +00:00
|
|
|
# If defined allows to run applications without the registrar
|
|
|
|
|
# -- for development only, of course.
|
|
|
|
|
if $(RUN_WITHOUT_REGISTRAR) {
|
|
|
|
|
local defines = [ FDefines RUN_WITHOUT_REGISTRAR ] ;
|
|
|
|
|
SubDirCcFlags $(defines) ;
|
|
|
|
|
SubDirC++Flags $(defines) ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# If defined allows to run applications without the app server
|
|
|
|
|
# -- needed until the app server runs on our kernel.
|
|
|
|
|
RUN_WITHOUT_APP_SERVER ?= 0 ;
|
|
|
|
|
if $(RUN_WITHOUT_APP_SERVER) != 0 {
|
|
|
|
|
local defines = [ FDefines RUN_WITHOUT_APP_SERVER ] ;
|
|
|
|
|
SubDirCcFlags $(defines) ;
|
|
|
|
|
SubDirC++Flags $(defines) ;
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-18 15:48:12 +00:00
|
|
|
UsePrivateHeaders shared app interface kernel ;
|
2006-03-18 13:43:26 +00:00
|
|
|
UseHeaders $(TARGET_PRIVATE_KERNEL_HEADERS) : true ;
|
2005-08-05 09:56:03 +00:00
|
|
|
|
2005-11-07 16:07:25 +00:00
|
|
|
SetSubDirSupportedPlatforms haiku libbe_test ;
|
2005-10-29 16:27:43 +00:00
|
|
|
|
2005-08-05 09:56:03 +00:00
|
|
|
MergeObject <libbe>app_kit.o :
|
|
|
|
|
AppDefs.cpp
|
|
|
|
|
Application.cpp
|
|
|
|
|
AppMisc.cpp
|
|
|
|
|
AppServerLink.cpp
|
|
|
|
|
AreaLink.cpp
|
|
|
|
|
Cursor.cpp
|
|
|
|
|
Clipboard.cpp
|
|
|
|
|
dano_message.cpp
|
|
|
|
|
Handler.cpp
|
|
|
|
|
InitTerminateLibBe.cpp
|
|
|
|
|
Invoker.cpp
|
|
|
|
|
LinkReceiver.cpp
|
|
|
|
|
LinkSender.cpp
|
|
|
|
|
Looper.cpp
|
|
|
|
|
LooperList.cpp
|
|
|
|
|
Message.cpp
|
|
|
|
|
MessageFilter.cpp
|
|
|
|
|
MessageQueue.cpp
|
|
|
|
|
MessageRunner.cpp
|
|
|
|
|
Messenger.cpp
|
|
|
|
|
MessageUtils.cpp
|
|
|
|
|
PropertyInfo.cpp
|
|
|
|
|
PortLink.cpp
|
2005-11-20 16:24:23 +00:00
|
|
|
r5_message.cpp
|
2005-08-05 09:56:03 +00:00
|
|
|
RegistrarDefs.cpp
|
|
|
|
|
RegistrarThread.cpp
|
|
|
|
|
RegistrarThreadManager.cpp
|
|
|
|
|
Roster.cpp
|
|
|
|
|
RosterPrivate.cpp
|
|
|
|
|
Server.cpp
|
2005-11-02 12:55:20 +00:00
|
|
|
ServerLink.cpp
|
2006-03-18 13:43:26 +00:00
|
|
|
ServerMemoryAllocator.cpp
|
2005-08-05 09:56:03 +00:00
|
|
|
TokenSpace.cpp
|
|
|
|
|
TypeConstants.cpp
|
|
|
|
|
;
|
2002-07-09 12:24:59 +00:00
|
|
|
|