Makefile.in 766 B

123456789101112131415161718192021222324252627282930
  1. # Makefile for uClibc NPTL
  2. #
  3. # Copyright (C) 2006 Steven J. Hill <sjhill@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. #
  8. # NOTE: Alpha and MIPS have their own versions of 'libc-tls.c' in
  9. # their architecture specific directory which will override
  10. # the one here.
  11. #
  12. libc_a_CSRC = dl-tls.c libc-tls.c
  13. CFLAGS-generic = $(SSP_ALL_CFLAGS)
  14. #CFLAGS:=$(CFLAGS:-O1=-O2)
  15. PTHREAD_GENERIC_OUT:=$(top_builddir)libpthread/nptl/sysdeps/generic
  16. LIBC_GENERIC_OBJ:=$(patsubst %.c,$(PTHREAD_GENERIC_OUT)/%.o,$(libc_a_CSRC))
  17. libc-static-y+=$(LIBC_GENERIC_OBJ)
  18. libc-nomulti-y+=$(LIBC_GENERIC_OBJ)
  19. objclean-y+=nptl_pthread_generic_clean
  20. nptl_pthread_generic_clean:
  21. $(do_rm) $(addprefix $(PTHREAD_GENERIC_OUT)/*., o os oS)