Makefile.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. subdirs += librt
  8. CFLAGS-librt := -DNOT_IN_libc -DIS_IN_librt $(SSP_ALL_CFLAGS)
  9. librt_DIR := $(top_srcdir)librt
  10. librt_OUT := $(top_builddir)librt
  11. librt_SRC := $(notdir $(wildcard $(librt_DIR)/*.c))
  12. librt_filter_SRC :=
  13. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  14. librt_filter_SRC += mq_notify.c timer_create.c timer_delete.c \
  15. timer_getoverr.c timer_gettime.c timer_settime.c
  16. # these should really be guarded by ADVANCED_REALTIME, we use them in mq_send.c/mq_receive.c
  17. librt_SSRC := $(wildcard $(librt_DIR)/*.S)
  18. else
  19. librt_filter_SRC += clock_nanosleep.c clock_getcpuclockid.c clock_gettime.c
  20. librt_SSRC :=
  21. endif
  22. librt_filter_SRC += $(if $(UCLIBC_HAS_ADVANCED_REALTIME),, \
  23. spawn.c \
  24. spawn_faction_addclose.c \
  25. spawn_faction_adddup2.c \
  26. spawn_faction_addopen.c \
  27. spawn_faction_init.c)
  28. librt_filter_SRC += $(if $(UCLIBC_HAS_STUBS),,rt_stubs.c)
  29. librt_filter_SRC += $(if $(HAS_NO_THREADS),dso_handle.c)
  30. librt_SRC := $(filter-out $(librt_filter_SRC),$(librt_SRC))
  31. librt_OBJ := $(patsubst %.c,$(librt_OUT)/%.o,$(librt_SRC))
  32. librt_OBJ += $(patsubst $(librt_DIR)/%.S,$(librt_OUT)/%.o,$(librt_SSRC))
  33. ASFLAGS-mq_timedreceive.S = -D_LIBC_REENTRANT
  34. ASFLAGS-mq_timedsend.S = -D_LIBC_REENTRANT
  35. ifeq ($(DOPIC),y)
  36. librt-a-y += $(librt_OBJ:.o=.os)
  37. else
  38. librt-a-y += $(librt_OBJ)
  39. endif
  40. librt-so-y += $(librt_OBJ:.o=.oS)
  41. librt-dep-y := $(libc.depend)
  42. objclean-y += CLEAN_librt
  43. CLEAN_librt:
  44. $(do_rm) $(addprefix $(librt_OUT)/*., o os oS a)