diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index 875898259..f35337a3b 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -25,7 +25,7 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak -DIRS = assert ctype dirent file fnmatch glob internals \ +DIRS = assert ctype dirent file fnmatch internals \ mntent syslog time utmp sysvipc statfs \ error ttyent gnu search locale ifeq ($(strip $(UCLIBC_HAS_REGEX)),y) @@ -43,6 +43,12 @@ endif ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y) DIRS += intl endif +ifeq ($(strip $(UCLIBC_HAS_FTW)),y) +DIRS += ftw +endif +ifeq ($(strip $(UCLIBC_HAS_GLOB)),y) +DIRS += glob +endif all: libc.a |