| # 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. |
| # |
| |
| subdirs += libc/misc/regex |
| |
| 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 += CLEAN_libc/misc/regex |
| |
| CLEAN_libc/misc/regex: |
| $(do_rm) $(addprefix $(MISC_REGEX_OUT)/*., o os) |