123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- TOPDIR=../../
- include $(TOPDIR)Rules.mak
- DIRS = assert ctype dirent file fnmatch internals \
- mntent syslog time utmp sysvipc statfs \
- error ttyent gnu search locale
- ifeq ($(UCLIBC_HAS_REGEX),y)
- DIRS += regex
- endif
- ifeq ($(UCLIBC_HAS_WORDEXP),y)
- DIRS += wordexp
- endif
- ifeq ($(UCLIBC_HAS_THREADS),y)
- DIRS += pthread
- endif
- ifeq ($(UCLIBC_HAS_WCHAR),y)
- DIRS += wctype wchar
- endif
- ifeq ($(UCLIBC_HAS_GETTEXT_AWARENESS),y)
- DIRS += intl
- endif
- ifeq ($(UCLIBC_HAS_FTW),y)
- DIRS += ftw
- endif
- ifeq ($(UCLIBC_HAS_GLOB),y)
- DIRS += glob
- endif
- all: subdirs
- tags:
- ctags -R
- clean: subdirs_clean
- subdirs: $(patsubst %, _dir_%, $(DIRS))
- subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS))
- $(patsubst %, _dir_%, $(DIRS)) : dummy
- $(MAKE) -C $(patsubst _dir_%, %, $@)
- $(patsubst %, _dirclean_%, $(DIRS)) : dummy
- $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
- .PHONY: dummy
|