xref: /haiku/src/system/libroot/posix/musl/time/Jamfile (revision 4a55cc230cf7566cadcbb23b1928eefff8aea9a2)
1SubDir HAIKU_TOP src system libroot posix musl time ;
2
3SubDirSysHdrs [ FDirName $(SUBDIR) .. include ] ;
4UseHeaders [ FDirName $(SUBDIR) .. internal ] ;
5
6local architectureObject ;
7for architectureObject in [ MultiArchSubDirSetup ] {
8	on $(architectureObject) {
9		local architecture = $(TARGET_PACKAGING_ARCH) ;
10
11		MergeObject <$(architecture)>posix_musl_time.o :
12			difftime.c
13			strftime.c
14			strptime.c
15			wcsftime.c
16			;
17	}
18}
19