12345678910111213141516171819202122232425 |
- # Makefile for uClibc
- #
- # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
- #
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- #
- ifeq ($(UCLIBC_HAS_REGEX_OLD),y)
- CSRC := regex_old.c
- else
- CSRC := regex.c
- endif
- MISC_REGEX_DIR := $(top_srcdir)libc/misc/regex
- MISC_REGEX_OUT := $(top_builddir)libc/misc/regex
- MISC_REGEX_SRC := $(patsubst %.c,$(MISC_REGEX_DIR)/%.c,$(CSRC))
- MISC_REGEX_OBJ := $(patsubst %.c,$(MISC_REGEX_OUT)/%.o,$(CSRC))
- libc-$(UCLIBC_HAS_REGEX) += $(MISC_REGEX_OBJ)
- objclean-y += misc_regex_clean
- misc_regex_clean:
- $(do_rm) $(addprefix $(MISC_REGEX_OUT)/*., o os)
|