diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-27 14:47:55 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-27 14:47:55 +0000 |
commit | 2ecbc559282fd45c9557838be6129a2575f3c4c4 (patch) | |
tree | 576758058c7711158b8ee8d6761433b90c7d28c3 /libc/misc/glob/Makefile.in | |
parent | 22f05b29610faa5eaabec5821c8f6cd12ed0294e (diff) |
Rich Felker's glob() ported to uClibc
Diffstat (limited to 'libc/misc/glob/Makefile.in')
-rw-r--r-- | libc/misc/glob/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/misc/glob/Makefile.in b/libc/misc/glob/Makefile.in index 7a4fa79f1..2eda3dea2 100644 --- a/libc/misc/glob/Makefile.in +++ b/libc/misc/glob/Makefile.in @@ -6,10 +6,17 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # +ifeq ($(UCLIBC_HAS_GNU_GLOB),y) CSRC := glob.c glob-hooks.c ifeq ($(UCLIBC_HAS_LFS),y) CSRC += glob64.c endif +else +CSRC := glob-susv3.c +ifeq ($(UCLIBC_HAS_LFS),y) +CSRC += glob64-susv3.c +endif +endif MISC_GLOB_DIR := $(top_srcdir)libc/misc/glob MISC_GLOB_OUT := $(top_builddir)libc/misc/glob |