xref: /haiku/src/bin/rc/Jamfile (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1SubDir HAIKU_TOP src bin rc ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5GENERATE_C++ on [ FGristFiles lexer.l parser.y ] = true ;
6
7SubDirC++Flags -Wno-sign-compare -Wno-unused ;
8
9StaticLibrary librdef.a :
10	compile.cpp decompile.cpp lexer.l parser.y rdef.cpp ;
11
12BinCommand rc :
13	rc.cpp
14	: librdef.a [ TargetLibstdc++ ] be
15;
16