From 2715f28ad4494dcf5da41398a6dbf2e43042620d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 8 Jun 2000 19:54:27 +0000 Subject: Update. * sysdeps/pthread/Makefile: New file. Add rules to build timer functionality. * sysdeps/unix/sysv/linux/bits/local_lim.h: Add TIMER_MAX. 2000-06-04 Kaz Kylheku * sysdeps/pthread/posix-timer.h: New file. * sysdeps/pthread/timer_create.c: New file. * sysdeps/pthread/timer_delete.c: New file. * sysdeps/pthread/timer_getoverr.c: New file. * sysdeps/pthread/timer_gettime.c: New file. * sysdeps/pthread/timer_routines.c: New file. * sysdeps/pthread/timer_settime.c: New file. * sysdeps/pthread/tst-timer.c: New file. 2000-06-08 Ulrich Drepper --- linuxthreads/sysdeps/pthread/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 linuxthreads/sysdeps/pthread/Makefile (limited to 'linuxthreads/sysdeps/pthread/Makefile') diff --git a/linuxthreads/sysdeps/pthread/Makefile b/linuxthreads/sysdeps/pthread/Makefile new file mode 100644 index 0000000000..e896cadf43 --- /dev/null +++ b/linuxthreads/sysdeps/pthread/Makefile @@ -0,0 +1,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 -- cgit v1.2.3