blob: e896cadf43a80af4b671f63c95ad10fc244b26ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ifeq ($(subdir),rt)
librt-routines += timer_routines
ifeq ($(have-thread-library),yes)
tests += tst-timer
endif
ifeq (yes,$(build-shared))
$(objpfx)tst-timer: $(objpfx)librt.so $(shared-thread-library)
else
$(objpfx)tst-timer: $(objpfx)librt.a $(static-thread-library)
endif
endif
|