[uClibc-cvs] uClibc/libc/misc Makefile,1.38,1.39

Erik Andersen andersen at uclibc.org
Sat Sep 6 00:00:12 UTC 2003


Update of /var/cvs/uClibc/libc/misc
In directory winder:/tmp/cvs-serv20219/libc/misc

Modified Files:
	Makefile 
Log Message:
Let people enable ftw, make glob an option, add a new "Big and Tall"
top level config menu.


Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/libc/misc/Makefile,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- Makefile	3 Sep 2003 07:23:14 -0000	1.38
+++ Makefile	6 Sep 2003 00:00:07 -0000	1.39
@@ -25,7 +25,7 @@
 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 @@
 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
 




More information about the uClibc-cvs mailing list