xref: /haiku/src/system/libroot/posix/glibc/regex/Jamfile (revision 21258e2674226d6aa732321b6f8494841895af5f)
1SubDir HAIKU_TOP src system libroot posix glibc regex ;
2
3SubDirHdrs $(HAIKU_TOP) headers ;
4SubDirCcFlags -D_REGEX_RE_COMP -D__USE_GNU -DHAVE_STDBOOL_H ;
5
6local architectureObject ;
7for architectureObject in [ MultiArchSubDirSetup ] {
8	on $(architectureObject) {
9		local architecture = $(TARGET_PACKAGING_ARCH) ;
10
11		MergeObject <$(architecture)>posix_gnu_regex.o :
12			regex.c
13			;
14	}
15}
16