Add ping, ifconfig, route, arp & traceroute network command line apps to the build.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1811 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2002-11-01 03:01:02 +00:00
parent 350117ec51
commit 41aff81700
7 changed files with 29 additions and 2 deletions

View File

@ -1,2 +1,7 @@
SubDir OBOS_TOP src apps bin arp ;
UsePrivateHeaders net ;
BinCommand arp :
arp.c
: libnet.so ;

View File

@ -1,2 +1,7 @@
SubDir OBOS_TOP src apps bin ifconfig ;
UsePrivateHeaders net ;
BinCommand ifconfig :
ifconfig.c
: libnet.so ;

View File

@ -1,2 +1,7 @@
SubDir OBOS_TOP src apps bin ping ;
UsePrivateHeaders net ;
BinCommand ping :
ping.c
: libnet.so ;

View File

@ -1,2 +1,9 @@
SubDir OBOS_TOP src apps bin route ;
UsePrivateHeaders net ;
BinCommand route :
keywords.c
route.c
show.c
: libnet.so ;

View File

@ -36,7 +36,7 @@
#include <kernel/OS.h>
#include "sys/socket.h"
#include "sys/mbuf.h"
#include "mbuf.h"
#include "net/if.h"
#include "net/route.h"

View File

@ -33,7 +33,7 @@
#include <sys/param.h>
#include <kernel/OS.h>
#include "sys/mbuf.h"
#include "mbuf.h"
#include "sys/socket.h"
#include "sys/socketvar.h"
#include "sys/protosw.h"

View File

@ -1,2 +1,7 @@
SubDir OBOS_TOP src apps bin traceroute ;
UsePrivateHeaders net ;
BinCommand traceroute :
traceroute.c
: libnet.so ;