123456789101112131415161718192021222324252627282930313233 |
- # 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.
- #
- CSRC := hsearch.c
- # multi source _tsearch.c
- CSRC += tsearch.c tfind.c tdelete.c twalk.c tdestroy.c
- # multi source _lsearch.c
- CSRC += lfind.c lsearch.c
- # multi source insremque.c
- CSRC += insque.c remque.c
- # multi source _hsearch_r.c
- CSRC += 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))
- MISC_SEARCH_OBJ := $(patsubst %.c,$(MISC_SEARCH_OUT)/%.o,$(CSRC))
- libc-y += $(MISC_SEARCH_OBJ)
- objclean-y += misc_search_clean
- misc_search_clean:
- $(do_rm) $(addprefix $(MISC_SEARCH_OUT)/*., o os)
|