Makefile.in 645 B

1234567891011121314151617181920212223242526
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. ifeq ($(UCLIBC_HAS_REGEX_OLD),y)
  9. CSRC := regex_old.c
  10. else
  11. CSRC := regex.c
  12. endif
  13. MISC_REGEX_DIR := $(top_srcdir)libc/misc/regex
  14. MISC_REGEX_OUT := $(top_builddir)libc/misc/regex
  15. MISC_REGEX_SRC := $(patsubst %.c,$(MISC_REGEX_DIR)/%.c,$(CSRC))
  16. MISC_REGEX_OBJ := $(patsubst %.c,$(MISC_REGEX_OUT)/%.o,$(CSRC))
  17. libc-$(UCLIBC_HAS_REGEX) += $(MISC_REGEX_OBJ)
  18. objclean-y += misc_regex_objclean
  19. misc_regex_objclean:
  20. $(RM) $(MISC_REGEX_OUT)/*.{o,os}