xref: /haiku/src/add-ons/kernel/network/protocols/icmp/Jamfile (revision 25160e50935c4647beb1f0f07839698c389fdf79)
1SubDir HAIKU_TOP src add-ons kernel network protocols icmp ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5if $(TARGET_PLATFORM) != haiku {
6	UseHeaders [ FStandardOSHeaders ] : true ;
7		# Needed for <support/Errors.h> and maybe other stuff.
8	UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
9		# We need the public network headers also when not compiling for Haiku.
10		# Unfortunately we get more than we want, namely all POSIX headers.
11}
12
13UsePrivateHeaders kernel net ;
14
15KernelAddon icmp : kernel haiku_network protocols :
16	icmp.cpp
17;
18
19# Installation
20HaikuInstall install-networking : /boot/home/config/add-ons/kernel/haiku_network/protocols
21	: icmp ;
22
23Package haiku-networkingkit-cvs :
24	haiku :
25	boot home config add-ons kernel haiku_network protocols ;
26