1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- TOPDIR=../
- -include $(TOPDIR).config
- .EXPORT_ALL_VARIABLES:
- ALL_SUBDIRS = \
- args assert crypt ctype pwd_grp signal silly stdlib string unistd \
-
- DIRS := $(ALL_SUBDIRS)
- ifeq ($(HAVE_SHARED)$(BUILD_UCLIBC_LDSO),yy)
- DIRS += dlopen
- endif
- ifeq ($(UCLIBC_HAS_THREADS),y)
- DIRS += pthread
- endif
- ALL_SUBDIRS += pthread dlopen
- all: subdirs
- tags:
- ctags -R
- clean: subdirs_clean
- subdirs: $(patsubst %, _dir_%, $(DIRS))
- subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
- $(patsubst %, _dir_%, $(DIRS)) : dummy
- @echo "Making test in $(patsubst _dir_%,%,$@)"
- $(MAKE) -C $(patsubst _dir_%, %, $@)
- $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
- $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
- .PHONY: dummy
|