xref: /haiku/3rdparty/Jamfile (revision 778611c7e6a61b8ba072212756ce53eda826360a)
1SubDir HAIKU_TOP 3rdparty ;
2
3# automatically pick any subdir that contains a Jamfile
4# this should allow hooking projects locally
5# without having to touch this file and get conflicts when it is updated.
6for subdir in [ GLOB $(SUBDIR) : [^.]* ] {
7	if [ GLOB $(subdir:G=) : Jamfile ] {
8		SubInclude HAIKU_TOP 3rdparty $(subdir:D=) ;
9	}
10}
11