- reactivated building of arp, ifconfig and route to all BONE-compatbile targets

(by linking them to haiku's libsocket.so and libbind.so). This in turn greatly
  simplifies building their respective userland version as they now are the same
  as the standard version.
- added ping and traceroute to install-userland-networking pseudotarget


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17717 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2006-06-04 13:26:53 +00:00
parent 1434300528
commit e1aed9319d
6 changed files with 37 additions and 42 deletions
-35
View File
@@ -21,41 +21,6 @@ HaikuInstall install-userland-networking
: installed-userland-networking
;
SEARCH_SOURCE = [ FDirName $(HAIKU_TOP) src bin arp ] ;
SimpleTest <userland>arp :
arp.c
: <installed-userland-networking>libbind.so
<installed-userland-networking>libsocket.so
$(SELECT_UNAME_ETC_LIB)
;
SEARCH_SOURCE = [ FDirName $(HAIKU_TOP) src bin ifconfig ] ;
SimpleTest <userland>ifconfig :
ifconfig.c
: <installed-userland-networking>libbind.so
<installed-userland-networking>libsocket.so
;
SEARCH_SOURCE = [ FDirName $(HAIKU_TOP) src bin route ] ;
SimpleTest <userland-bin>route :
keywords.c
route.c
show.c
: <installed-userland-networking>libbind.so
<installed-userland-networking>libnet.so
<installed-userland-networking>libsocket.so
$(SELECT_UNAME_ETC_LIB)
;
# Installation -- in the test directory for the time being
HaikuInstall install-userland-networking
: [ FDirName $(HAIKU_TEST_DIR) kits net userland ]
: <userland>arp
<userland>ifconfig
<userland-bin>route
: installed-userland-networking-bin
;
SubInclude HAIKU_TOP src tests add-ons kernel network core ;
SubInclude HAIKU_TOP src tests add-ons kernel network interfaces ;
SubInclude HAIKU_TOP src tests add-ons kernel network ppp ;