1SubDir HAIKU_TOP src tests add-ons kernel network protocols tcp ;
2
3UseLegacyHeaders network ;
4UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
5UsePrivateHeaders net ;
6
7SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel network protocols tcp ] ;
8
9Addon <userland>tcp :
10	tcp.c
11	tcp_debug.c
12	tcp_input.c
13	tcp_output.c
14	tcp_timer.c
15	arc4random.c
16	: <installed-userland-networking>net_stack_tester
17;
18
19# Installation -- in the test directory for the time being
20HaikuInstall install-userland-networking 
21	: [ FDirName $(HAIKU_TEST_DIR) kits net userland add-ons obos_network protocols ]
22	: <userland>tcp
23	: installed-userland-networking
24;
25