diff options
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/rt/Makefile b/rt/Makefile index 8eb019662e..f2c80fa8ad 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -40,7 +40,8 @@ include ../Makeconfig ifeq ($(have-thread-library),yes) -tests := tst-aio tst-aio64 tst-clock tst-shm tst-timer tst-aio2 +tests := tst-aio tst-aio64 tst-clock tst-shm tst-timer tst-aio2 tst-aio3 \ + tst-aio4 tst-aio5 extra-libs := librt extra-libs-others := $(extra-libs) @@ -57,12 +58,18 @@ $(objpfx)librt.so: $(common-objpfx)libc.so $(shared-thread-library) ifeq (yes,$(build-shared)) $(objpfx)tst-aio: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-aio2: $(objpfx)librt.so $(shared-thread-library) +$(objpfx)tst-aio3: $(objpfx)librt.so $(shared-thread-library) +$(objpfx)tst-aio4: $(objpfx)librt.so $(shared-thread-library) +$(objpfx)tst-aio5: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-aio64: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-clock: $(objpfx)librt.so $(shared-thread-library) $(objpfx)tst-shm: $(objpfx)librt.so $(shared-thread-library) else $(objpfx)tst-aio: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-aio2: $(objpfx)librt.a $(static-thread-library) +$(objpfx)tst-aio3: $(objpfx)librt.a $(static-thread-library) +$(objpfx)tst-aio4: $(objpfx)librt.a $(static-thread-library) +$(objpfx)tst-aio5: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-aio64: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-clock: $(objpfx)librt.a $(static-thread-library) $(objpfx)tst-shm: $(objpfx)librt.a $(static-thread-library) |