Makefile.in 647 B

123456789101112131415161718192021222324252627
  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 += libc/misc/regex
  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_clean
  19. misc_regex_clean:
  20. $(do_rm) $(addprefix $(MISC_REGEX_OUT)/*., o os)