blob: e9d57d58e4be975777ac2689375bed99f958b8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ifeq ($(subdir),rt)
librt-sysdep_routines += timer_routines
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
ifeq ($(subdir),posix)
CFLAGS-confstr.c += -DLIBPTHREAD_VERSION="\"$(shell sed 's/\(.*\) by .*/\1/' ../linuxthreads/Banner)\""
endif
|