| 123456789101112131415161718192021222324252627 | # Makefile for uClibc NPTL## Copyright (C) 2006 Steven J. Hill <sjhill@uclibc.org>## Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.#subdirs += libpthread/nptl/sysdeps/generic## NOTE: Alpha and MIPS have their own versions of 'libc-tls.c' in#       their architecture specific directory which will override#       the one here.#libpthread_generic_DIR := $(top_srcdir)libpthread/nptl/sysdeps/genericlibpthread_generic_OUT := $(top_builddir)libpthread/nptl/sysdeps/genericlibpthread_generic_libc_a_CSRC = libc-tls.clibpthread_generic_libc_a_COBJ = $(patsubst %.c,$(libpthread_generic_OUT)/%.o,$(libpthread_generic_libc_a_CSRC))libpthread_generic_libc_a_OBJS = $(libpthread_generic_libc_a_COBJ)libpthread_ld_tls_CSRC = dl-tls.clibpthread_ld_tls_COBJ = $(patsubst %.c,$(libpthread_generic_OUT)/%.o,$(libpthread_ld_tls_CSRC))CFLAGS-generic = $(SSP_ALL_CFLAGS)objclean-y += CLEAN_libpthread/nptl/sysdeps/genericCLEAN_libpthread/nptl/sysdeps/generic:	$(do_rm) $(addprefix $(libpthread_generic_OUT)/*., o os oS)
 |