Removed unnecessary libroot.so from target's link.

Prepare to build as userland add-ons the newer "ppp" interface module...


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5128 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2003-10-23 21:53:37 +00:00
parent 51978af14a
commit dbdcbc27d9
11 changed files with 34 additions and 9 deletions

View File

@ -5,12 +5,14 @@ UsePrivateHeaders net ;
# the network stack tester app
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel libroot os ] ;
SimpleTest net_stack_tester :
net_stack_tester.cpp
userland_ipc.c
userland_modules.cpp
: be
: be
;
LOCATE on <installed>net_stack_tester = [ on net_stack_tester return $(LOCATE) ] ;
Depends <installed>net_stack_tester : net_stack_tester ;

View File

@ -22,6 +22,6 @@ Addon <userland>core : userland network :
socket.c
;
LinkSharedOSLibs <userland>core : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>core : <installed>net_stack_tester ;

View File

@ -2,4 +2,6 @@ SubDir OBOS_TOP src tests add-ons kernel network interfaces ;
SubInclude OBOS_TOP src tests add-ons kernel network interfaces ethernet ;
SubInclude OBOS_TOP src tests add-ons kernel network interfaces loopback ;
# SubInclude OBOS_TOP src tests add-ons kernel network interfaces ppp ;

View File

@ -8,5 +8,5 @@ Addon <userland>ethernet : userland network interfaces :
ethernet.c
;
LinkSharedOSLibs <userland>ethernet : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>ethernet : <installed>net_stack_tester ;

View File

@ -8,5 +8,5 @@ Addon <userland>loopback : userland network interfaces :
loopback.c
;
LinkSharedOSLibs <userland>loopback : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>loopback : <installed>net_stack_tester ;

View File

@ -0,0 +1,21 @@
SubDir OBOS_TOP src tests add-ons kernel network interfaces ppp ;
UsePrivateHeaders net ;
UsePrivateHeaders [ FDirName kernel ] ;
UsePrivateHeaders [ FDirName kernel util ] ;
UseHeaders [ FDirName $(OBOS_TOP) src add-ons kernel network ppp shared libkernelppp headers ] ;
# for kernel_cpp.cpp/h and BLocker
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel core util ] ;
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel core disk_device_manager ] ;
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src add-ons kernel network interfaces ppp ] ;
Addon <userland>ppp : userland network interfaces :
kernel_cpp.cpp
ppp.cpp
PPPManager.cpp
;
LinkSharedOSLibs <userland>ppp : libkernelppp.a <installed>net_stack_tester ;

View File

@ -8,4 +8,4 @@ Addon <userland>icmp : userland network protocols :
icmp.c
;
LinkSharedOSLibs <userland>icmp : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>icmp : <installed>net_stack_tester ;

View File

@ -8,4 +8,4 @@ Addon <userland>ipv4 : userland network protocols :
ipv4.c
;
LinkSharedOSLibs <userland>ipv4 : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>ipv4 : <installed>net_stack_tester ;

View File

@ -8,4 +8,4 @@ Addon <userland>raw : userland network protocols :
raw.c
;
LinkSharedOSLibs <userland>raw : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>raw : <installed>net_stack_tester ;

View File

@ -13,4 +13,4 @@ Addon <userland>tcp : userland network protocols :
arc4random.c
;
LinkSharedOSLibs <userland>tcp : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>tcp : <installed>net_stack_tester ;

View File

@ -8,4 +8,4 @@ Addon <userland>udp : userland network protocols :
udp.c
;
LinkSharedOSLibs <userland>udp : root <installed>net_stack_tester ;
LinkSharedOSLibs <userland>udp : <installed>net_stack_tester ;