diff options
Diffstat (limited to 'rt')
-rw-r--r-- | rt/Makefile | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/rt/Makefile b/rt/Makefile index f2c80fa..2be7de3 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -56,21 +56,10 @@ include ../Rules $(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) +$(addprefix $(objpfx),$(tests)): $(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) +$(addprefix $(objpfx),$(tests)): $(objpfx)librt.a $(static-thread-library) +endif +ifeq (yes,$(build-bounded)) +$(tests:%=$(objpfx)%-bp): $(objpfx)librt_b.a $(bounded-thread-library) endif |