1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Makefile for uClibc
- #
- # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
- #
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- #
- subdirs += librt
- CFLAGS-librt := -DNOT_IN_libc -DIS_IN_librt $(SSP_ALL_CFLAGS)
- librt_DIR := $(top_srcdir)librt
- librt_OUT := $(top_builddir)librt
- librt_SRC := $(notdir $(wildcard $(librt_DIR)/*.c))
- librt_filter_SRC :=
- ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
- librt_filter_SRC += mq_notify.c timer_create.c timer_delete.c \
- timer_getoverr.c timer_gettime.c timer_settime.c
- endif
- librt_filter_SRC += $(if $(UCLIBC_HAS_ADVANCED_REALTIME),, \
- spawn.c \
- spawn_faction_addclose.c \
- spawn_faction_adddup2.c \
- spawn_faction_addopen.c \
- spawn_faction_init.c)
- librt_filter_SRC += $(if $(UCLIBC_HAS_STUBS),,rt_stubs.c)
- librt_filter_SRC += $(if $(HAS_NO_THREADS),dso_handle.c)
- librt_SRC := $(filter-out $(librt_filter_SRC),$(librt_SRC))
- librt_OBJ := $(patsubst %.c,$(librt_OUT)/%.o,$(librt_SRC))
- ifeq ($(DOPIC),y)
- librt-a-y += $(librt_OBJ:.o=.os)
- else
- librt-a-y += $(librt_OBJ)
- endif
- librt-so-y += $(librt_OBJ:.o=.os)
- librt-dep-y := $(libc.depend)
- objclean-y += CLEAN_librt
- CLEAN_librt:
- $(do_rm) $(addprefix $(librt_OUT)/*., o os oS a)
|