OSDN Git Service

- less verbose make clean
[uclinux-h8/uClibc.git] / libc / misc / glob / Makefile.in
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
4 #
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 #
7
8 ifeq ($(UCLIBC_HAS_GNU_GLOB),y)
9 CSRC := glob.c
10 ifeq ($(UCLIBC_HAS_LFS),y)
11 CSRC += glob64.c
12 endif
13 else
14 CSRC := glob-susv3.c
15 ifeq ($(UCLIBC_HAS_LFS),y)
16 CSRC += glob64-susv3.c
17 endif
18 endif
19
20 MISC_GLOB_DIR := $(top_srcdir)libc/misc/glob
21 MISC_GLOB_OUT := $(top_builddir)libc/misc/glob
22
23 MISC_GLOB_SRC := $(patsubst %.c,$(MISC_GLOB_DIR)/%.c,$(CSRC))
24 MISC_GLOB_OBJ := $(patsubst %.c,$(MISC_GLOB_OUT)/%.o,$(CSRC))
25
26 libc-$(UCLIBC_HAS_GLOB) += $(MISC_GLOB_OBJ)
27
28 objclean-y += misc_glob_clean
29
30 misc_glob_clean:
31         $(do_rm) $(addprefix $(MISC_GLOB_OUT)/*., o os)