diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-09-06 00:00:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-09-06 00:00:07 +0000 |
commit | 41130f0233dbc9da839810b103540cd792f0d912 (patch) | |
tree | 7f4fe56f805952b89ebe688944eb3b094bdd3145 /libc | |
parent | 9f24aacae6a39a4a5bb5a58bad629d09cebdedfe (diff) |
Let people enable ftw, make glob an option, add a new "Big and Tall"
top level config menu.
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 |