xref: /haiku/src/tools/rc/Jamfile (revision db4227c6acc95a8a72df4dab8cfb592983e529d3)
1SubDir OBOS_TOP src tools rc ;
2
3GENERATE_C++ on [ FGristFiles lexer.l parser.y ] = true ;
4
5SubDirC++Flags -Wno-sign-compare -Wno-unused ;
6
7StaticLibrary rdef :
8	compile.cpp decompile.cpp lexer.l parser.y rdef.cpp ;
9
10BinCommand rc :
11	rc.cpp
12
13	# these two are needed for R5 only
14	strlcpy.c
15	strlcat.c
16	: librdef.a libstdc++.r4.so libbe.so
17	;
18
19SEARCH on [ FGristFiles
20		strlcat.c strlcpy.c
21	] = [ FDirName $(OBOS_TOP) src system libroot posix string ] ;
22