summaryrefslogtreecommitdiff
path: root/libc/misc/search/Makefile.in
blob: f8f8467497373132f36651071635daf180bb4d9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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 := 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)