Makefile.in 599 B

1234567891011121314151617181920212223
  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. CSRC-y := regex.c
  9. MISC_REGEX_DIR := $(top_srcdir)libc/misc/regex
  10. MISC_REGEX_OUT := $(top_builddir)libc/misc/regex
  11. MISC_REGEX_SRC := $(patsubst %.c,$(MISC_REGEX_DIR)/%.c,$(CSRC-y))
  12. MISC_REGEX_OBJ := $(patsubst %.c,$(MISC_REGEX_OUT)/%.o,$(CSRC-y))
  13. libc-$(UCLIBC_HAS_REGEX) += $(MISC_REGEX_OBJ)
  14. objclean-y += CLEAN_libc/misc/regex
  15. CLEAN_libc/misc/regex:
  16. $(do_rm) $(addprefix $(MISC_REGEX_OUT)/*., o os)