1234567891011121314151617181920212223242526272829303132333435 |
- # 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/search
- CSRC-y := hsearch.c
- # multi source _tsearch.c
- CSRC-y += tsearch.c tfind.c tdelete.c twalk.c tdestroy.c
- # multi source _lsearch.c
- CSRC-y += lfind.c lsearch.c
- # multi source insremque.c
- CSRC-y += insque.c remque.c
- # multi source _hsearch_r.c
- CSRC-y += hcreate_r.c hdestroy_r.c hsearch_r.c
- MISC_SEARCH_DIR := $(top_srcdir)libc/misc/search
- MISC_SEARCH_OUT := $(top_builddir)libc/misc/search
- MISC_SEARCH_SRC := $(patsubst %.c,$(MISC_SEARCH_DIR)/%.c,$(CSRC-y))
- MISC_SEARCH_OBJ := $(patsubst %.c,$(MISC_SEARCH_OUT)/%.o,$(CSRC-y))
- libc-y += $(MISC_SEARCH_OBJ)
- objclean-y += CLEAN_libc/misc/search
- CLEAN_libc/misc/search:
- $(do_rm) $(addprefix $(MISC_SEARCH_OUT)/*., o os)
|